r455: no message
[ctsim.git] / include / mpiworld.h
index 2889821708a0770f44dc58cdd1d3e03db0487258..5f2568f6ca43fb5eaf3eeb1de5d75f602b84ca49 100644 (file)
 
 #include <mpi++.h>
 #include <vector.h>
-
+#include <string>
 
 class MPIWorld
 {
  public:
-    MPIWorld (int& argc, char**& argv);
+    MPIWorld (int& argc, char* const *& argv);
 
     void setTotalWorkUnits (int totalUnits);
 
@@ -62,7 +62,9 @@ class MPIWorld
 
     MPI::Intracomm& getComm() 
       { return m_comm; }
-      
+
+    void BcastString (string& str);
+
 private:
     int m_myRank;
     int m_nProcessors;