Changes in src/Element/periodentafel.hpp [37ef6d:47ed3d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Element/periodentafel.hpp ¶
r37ef6d r47ed3d 22 22 23 23 class element; 24 class ion;25 24 26 25 /********************************************** declarations *******************************/ … … 34 33 private: 35 34 typedef std::map<atomicNumber_t,element*> elementSet; 36 typedef std::map<int,ion*> ionSet;37 typedef std::map<atomicNumber_t,ionSet> IonsPerElement;38 35 public: 39 36 typedef elementSet::iterator iterator; … … 51 48 void CleanupPeriodtable(); 52 49 const element * FindElement(atomicNumber_t) const; 53 const element * FindElement(atomicNumber_t, const int);54 50 const element * FindElement(const std::string &shorthand) const; 55 51 const element * AskElement() const; … … 80 76 ar & boost::serialization::make_array<char>(header2, MAXSTRINGSIZE); 81 77 ar & elements; 82 ar & ions;83 78 } 84 79 … … 98 93 99 94 elementSet elements; 100 IonsPerElement ions;101 95 }; 102 96
Note:
See TracChangeset
for help on using the changeset viewer.