Changeset 3746aeb for molecuilder/src/World.hpp
- Timestamp:
- Mar 3, 2010, 5:47:40 PM (16 years ago)
- Children:
- 4938aa, f058ef
- Parents:
- 14d898
- File:
-
- 1 edited
-
molecuilder/src/World.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/World.hpp
r14d898 r3746aeb 130 130 */ 131 131 void destroyAtom(atomId_t); 132 133 /** 134 * used when changing an atom Id. 135 * Unless you are calling this method from inside an atom don't fiddle with the third parameter. 136 * 137 * Return value indicates wether the change could be done or not. 138 */ 139 bool changeAtomId(atomId_t oldId, atomId_t newId, atom* target=0); 132 140 133 141 /** … … 226 234 227 235 private: 236 237 atomId_t getNextAtomId(); 238 void releaseAtomId(atomId_t); 239 bool reserveAtomId(atomId_t); 240 228 241 periodentafel *periode; 229 242 AtomSet atoms; 243 std::set<atomId_t> atomIdPool; //<!stores the pool for all available AtomIds below currAtomId 230 244 atomId_t currAtomId; //!< stores the next available Id for atoms 231 245 MoleculeSet molecules;
Note:
See TracChangeset
for help on using the changeset viewer.
