Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/World.hpp

    r97ebf8 r6e97e5  
    99#define WORLD_HPP_
    1010
    11 /*********************************************** includes ***********************************/
    12 
    1311#include <string>
    1412#include <map>
     
    2422#include "Patterns/Singleton.hpp"
    2523
    26 // include config.h
    27 #ifdef HAVE_CONFIG_H
    28 #include <config.h>
    29 #endif
    3024
    3125// forward declarations
    32 class config;
    3326class periodentafel;
    3427class MoleculeListClass;
     
    4336class AtomsCalculation;
    4437
    45 /****************************************** forward declarations *****************************/
    46 
    47 /********************************************** Class World *******************************/
     38
    4839
    4940class World : public Singleton<World>, public Observable
     
    7667
    7768  /**
    78    * returns the configuration for the world.
    79    */
    80   config *&getConfig();
    81 
    82   /**
    8369   * returns the first atom that matches a given descriptor.
    8470   * Do not rely on ordering for descriptors that match more than one atom.
     
    115101   */
    116102  std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor);
    117   std::vector<molecule*> getAllMolecules();
    118103
    119104  /**
     
    121106   */
    122107  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);
    143108
    144109  /***** Methods to work with the World *****/
     
    241206
    242207  periodentafel *periode;
    243   config *configuration;
    244   static double *cell_size;
    245   static char *defaultName;
    246208public:
    247209  AtomSet atoms;
Note: See TracChangeset for help on using the changeset viewer.