Changes in src/World.hpp [2a8731:cad383]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.hpp
r2a8731 rcad383 20 20 #include <vector> 21 21 #include <set> 22 #include <stack> 22 23 #include <boost/thread.hpp> 23 24 #include <boost/shared_ptr.hpp> … … 373 374 void clearAtomSelection(); 374 375 void invertAtomSelection(); 376 void popAtomSelection(); 377 void pushAtomSelection(); 375 378 void selectAtom(const atom*); 376 379 void selectAtom(const atomId_t); … … 390 393 void clearMoleculeSelection(); 391 394 void invertMoleculeSelection(); 395 void popMoleculeSelection(); 396 void pushMoleculeSelection(); 392 397 void selectMolecule(const molecule*); 393 398 void selectMolecule(const moleculeId_t); … … 486 491 AtomSet atoms; 487 492 AtomSet selectedAtoms; 493 std::stack<AtomSet> selectedAtoms_Stack; 488 494 /** 489 495 * stores the pool for all available AtomIds below currAtomId … … 495 501 MoleculeSet molecules; 496 502 MoleculeSet selectedMolecules; 503 std::stack<MoleculeSet> selectedMolecules_Stack; 497 504 /** 498 505 * stores the pool for all available AtomIds below currAtomId
Note:
See TracChangeset
for help on using the changeset viewer.