#ifndef MPI_SIMULATION_HPP #define MPI_SIMULATION_HPP #include #include "Simulation.hpp" namespace nbody { class MpiSimulation : public Simulation { protected: MPI::Datatype mpiBody; int mpiSize; int mpiRank; public: MpiSimulation(int& argc, char**& argv); virtual ~MpiSimulation(); }; } #endif