#ifndef MAIN_INLCUDED #define MAIN_INLCUDED //! MPI headers. #undef SEEK_SET #undef SEEK_END #undef SEEK_CUR #include //! Standard C++ includes. #include #include #include #include #include class foobar { private: std::string name; double max; public: foobar(); ~foobar() {}; void set_str(std::string s) {name = s;}; void set_max(double d) {max = d;}; std::string get_str(void) {return name;}; double get_max(void) {return max;}; void foobar::mpi_send(int dest, int tag); void foobar::mpi_recv(); }; #endif