Files
lammps/examples/COUPLE/library/errorlib.h
2023-04-12 15:59:12 -06:00

20 lines
237 B
C++

#ifndef ERRORLIB_H
#define ERRORLIB_H
#include <mpi.h>
class ErrorLib {
public:
ErrorLib(MPI_Comm);
void all(const char *);
void one(const char *);
void warning(const char *);
private:
MPI_Comm comm;
int me;
};
#endif