Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/World.hpp

    r97ebf8 r387b36  
    135135   * get the default name
    136136   */
    137   char * getDefaultName();
     137  std::string getDefaultName();
    138138
    139139  /**
    140140   * set the default name
    141141   */
    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);
    143153
    144154  /***** Methods to work with the World *****/
     
    243253  config *configuration;
    244254  static double *cell_size;
    245   static char *defaultName;
     255  std::string defaultName;
     256  int ExitFlag;
    246257public:
    247258  AtomSet atoms;
Note: See TracChangeset for help on using the changeset viewer.