Changeset 42918b for molecuilder/src/World.cpp
- Timestamp:
- Feb 5, 2010, 2:59:41 PM (16 years ago)
- Children:
- d2d8f5
- Parents:
- 181488
- git-author:
- Tillmann Crueger <crueger@…> (02/05/10 14:53:21)
- git-committer:
- Tillmann Crueger <crueger@…> (02/05/10 14:59:41)
- File:
-
- 1 edited
-
molecuilder/src/World.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/World.cpp
r181488 r42918b 8 8 #include "World.hpp" 9 9 10 #include <iostream> 11 10 12 /******************************* getter and setter ************************/ 11 13 periodentafel* World::getPeriode(){ … … 15 17 /******************************* Singleton Stuff **************************/ 16 18 19 // TODO: Hide boost-thread using Autotools stuff when no threads are used 17 20 World* World::theWorld = 0; 21 boost::mutex World::worldLock; 22 18 23 19 24 … … 67 72 return molecules; 68 73 } 74 75 76 // methods for WorldContent CRTP mechanism 77 void World::registerContent(atom *atom){ 78 std::cout << "############### some kind of Atom created ##################" << std::endl; 79 }
Note:
See TracChangeset
for help on using the changeset viewer.
