Emdee
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
setup.h
Go to the documentation of this file.
1 #ifndef SETUP_H
2 #define SETUP_H
3 
4 #ifdef MD_USE_MPI
5 #include <boost/mpi.hpp>
6 #endif
7 
8 class Setup
9 {
10 public:
11  Setup(int argc, char *argv[]);
12 private:
13 #ifdef MD_USE_MPI
14  boost::mpi::environment m_env;
15  boost::mpi::communicator m_world;
16 #endif
17 };
18 
19 #endif // SETUP_H