Changes in src/World.hpp [6e97e5:97ebf8]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.hpp
r6e97e5 r97ebf8 9 9 #define WORLD_HPP_ 10 10 11 /*********************************************** includes ***********************************/ 12 11 13 #include <string> 12 14 #include <map> … … 22 24 #include "Patterns/Singleton.hpp" 23 25 26 // include config.h 27 #ifdef HAVE_CONFIG_H 28 #include <config.h> 29 #endif 24 30 25 31 // forward declarations 32 class config; 26 33 class periodentafel; 27 34 class MoleculeListClass; … … 36 43 class AtomsCalculation; 37 44 38 45 /****************************************** forward declarations *****************************/ 46 47 /********************************************** Class World *******************************/ 39 48 40 49 class World : public Singleton<World>, public Observable … … 67 76 68 77 /** 78 * returns the configuration for the world. 79 */ 80 config *&getConfig(); 81 82 /** 69 83 * returns the first atom that matches a given descriptor. 70 84 * Do not rely on ordering for descriptors that match more than one atom. … … 101 115 */ 102 116 std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor); 117 std::vector<molecule*> getAllMolecules(); 103 118 104 119 /** … … 106 121 */ 107 122 int numMolecules(); 123 124 /** 125 * get the domain size as a symmetric matrix (6 components) 126 */ 127 double * getDomain(); 128 129 /** 130 * set the domain size as a symmetric matrix (6 components) 131 */ 132 void setDomain(double * matrix); 133 134 /** 135 * get the default name 136 */ 137 char * getDefaultName(); 138 139 /** 140 * set the default name 141 */ 142 void setDefaultName(char * name); 108 143 109 144 /***** Methods to work with the World *****/ … … 206 241 207 242 periodentafel *periode; 243 config *configuration; 244 static double *cell_size; 245 static char *defaultName; 208 246 public: 209 247 AtomSet atoms;
Note:
See TracChangeset
for help on using the changeset viewer.