Changes in src/periodentafel.hpp [f66195:fb73b8]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/periodentafel.hpp
rf66195 rfb73b8 34 34 ~periodentafel(); 35 35 36 bool AddElement(element * pointer);37 bool RemoveElement(element * pointer);36 bool AddElement(element * const pointer); 37 bool RemoveElement(element * const pointer); 38 38 bool CleanupPeriodtable(); 39 element * FindElement(int Z); 40 element * FindElement(const char *shorthand) const; 41 element * AskElement(); 42 bool Output(ofstream *output) const; 43 bool Checkout(ofstream *output, const int *checkliste) const; 44 bool LoadPeriodentafel(const char *path); 45 bool StorePeriodentafel(const char *path) const; 39 element * const FindElement(const int Z) const; 40 element * const FindElement(const char * const shorthand) const; 41 element * const AskElement() const; 42 element * const EnterElement(); 43 bool Output(ofstream * const output) const; 44 bool Checkout(ofstream * const output, const int * const checkliste) const; 45 bool LoadPeriodentafel(const char * const path); 46 bool StorePeriodentafel(const char * const path) const; 46 47 47 48 private:
Note:
See TracChangeset
for help on using the changeset viewer.