KIDS  ver-0.0.1
KIDS : Kernel Integrated Dynamics Simulator
Loading...
Searching...
No Matches
Status.h
Go to the documentation of this file.
1
29#ifndef KIDS_Status_H
30#define KIDS_Status_H
31
32namespace PROJECT_NS {
33
34struct Status {
35 Status() : succ{true}, stage{0}, mpi_rank{0}, icalc{0} {};
36
37 Status(bool succ, int stage = 0, int mpi_rank = 0, int icalc = 0)
39
40 Status(const Status&) = delete;
41
42 Status& operator=(const Status&) = delete;
43
44 bool succ = true;
45 int stage = 0;
46 int mpi_rank = 0;
47 int icalc = 0;
48};
49
50}; // namespace PROJECT_NS
51
52#endif // KIDS_Status_H
< http://warp.povusers.org/FunctionParser/fparser.html
Definition Context.h:39
Status(bool succ, int stage=0, int mpi_rank=0, int icalc=0)
Definition Status.h:37
Status & operator=(const Status &)=delete
Disable copy assignment operator.
Status(const Status &)=delete
Disable copy constructor.