Changes in src/World.hpp [69643a:992bd5]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.hpp
r69643a r992bd5 109 109 /******* Notifications *******/ 110 110 111 //!> enumeration of present notification types 111 //!> enumeration of present notification types: only insertion/removal of atoms or molecules 112 112 enum NotificationType { 113 113 AtomInserted, 114 114 AtomRemoved, 115 AtomPositionChanged,116 AtomChanged,117 115 MoleculeInserted, 118 116 MoleculeRemoved, 119 MoleculeChanged,120 117 SelectionChanged, 121 118 NotificationType_MAX … … 293 290 * Unless you are calling this method from inside an atom don't fiddle with the third parameter. 294 291 * 295 * Return value indicates w ether the change could be done or not.292 * Return value indicates whether the change could be done or not. 296 293 */ 297 294 bool changeAtomId(atomId_t oldId, atomId_t newId, atom* target=0); … … 299 296 /** 300 297 * used when changing an molecule Id. 301 * Unless you are calling this method from inside an mole ucle don't fiddle with the third parameter.302 * 303 * Return value indicates w ether the change could be done or not.298 * Unless you are calling this method from inside an molecule don't fiddle with the third parameter. 299 * 300 * Return value indicates whether the change could be done or not. 304 301 */ 305 302 bool changeMoleculeId(moleculeId_t oldId, moleculeId_t newId, molecule* target=0);
Note:
See TracChangeset
for help on using the changeset viewer.