Changeset 2e6496
- Timestamp:
- Feb 25, 2010, 11:02:53 AM (15 years ago)
- Children:
- 1614a17, 8d9d38
- Parents:
- a1a532
- Location:
- molecuilder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/doc/Doxyfile
ra1a532 r2e6496 114 114 EXCLUDE = 115 115 EXCLUDE_SYMLINKS = NO 116 EXCLUDE_PATTERNS = 116 EXCLUDE_PATTERNS = */unittests/* \ 117 */test/* 117 118 EXAMPLE_PATH = 118 119 EXAMPLE_PATTERNS = * -
molecuilder/src/World.cpp
ra1a532 r2e6496 50 50 molecules_deprecated->insert(mol); 51 51 assert(!molecules.count(currMoleculeId)); 52 // store the molecule by ID 52 53 molecules[currMoleculeId++] = mol; 53 54 mol->signOn(this); … … 62 63 res->setId(currAtomId++); 63 64 res->setWorld(this); 65 // store the atom by ID 64 66 atoms[res->getId()] = res; 65 67 return res; … … 128 130 boost::mutex World::worldLock; 129 131 130 131 132 132 World::World() : 133 133 currAtomId(0),
Note:
See TracChangeset
for help on using the changeset viewer.