Changes in src/molecule.hpp [6cfa36:274d45]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule.hpp
r6cfa36 r274d45 93 93 94 94 public: 95 typedef std::set<atom*> atomSet; 95 typedef std::list<atom*> atomSet; 96 typedef std::set<atomId_t> atomIdSet; 96 97 typedef ObservedIterator<atomSet> iterator; 97 98 typedef atomSet::const_iterator const_iterator; … … 121 122 Cacheable<int> AtomCount; 122 123 moleculeId_t id; 123 atomSet atoms; //<!set of atoms 124 atomSet atoms; //<!list of atoms 125 atomIdSet atomIds; //<!set of atomic ids to check uniqueness of atoms 124 126 protected: 125 127 //void CountAtoms();
Note:
See TracChangeset
for help on using the changeset viewer.