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