Changeset 9ef76a for molecuilder/src/World.cpp
- Timestamp:
- Feb 19, 2010, 11:49:54 AM (16 years ago)
- Children:
- 01d28a
- Parents:
- 5d4edf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/World.cpp
r5d4edf r9ef76a 37 37 return molecules_deprecated->ListOfMolecules.size(); 38 38 } 39 40 /******************** Methods to change World state *********************/ 39 41 40 42 molecule* World::createMolecule(){ … … 53 55 } 54 56 57 /********************* Internal Change methods for double Callback and Observer mechanism ********/ 58 59 void World::doManipulate(ManipulateAtomsProcess *proc){ 60 proc->signOn(this); 61 { 62 OBSERVE; 63 proc->doManipulate(this); 64 } 65 proc->signOff(this); 66 } 67 55 68 /******************************* Iterators ********************************/ 56 69
Note:
See TracChangeset
for help on using the changeset viewer.