Changes in src/World.hpp [97ebf8:387b36]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.hpp
r97ebf8 r387b36 135 135 * get the default name 136 136 */ 137 char *getDefaultName();137 std::string getDefaultName(); 138 138 139 139 /** 140 140 * set the default name 141 141 */ 142 void setDefaultName(char * name); 142 void setDefaultName(std::string name); 143 144 /* 145 * get the ExitFlag 146 */ 147 int getExitFlag(); 148 149 /* 150 * set the ExitFlag 151 */ 152 void setExitFlag(int flag); 143 153 144 154 /***** Methods to work with the World *****/ … … 243 253 config *configuration; 244 254 static double *cell_size; 245 static char *defaultName; 255 std::string defaultName; 256 int ExitFlag; 246 257 public: 247 258 AtomSet atoms;
Note:
See TracChangeset
for help on using the changeset viewer.