source: molecuilder/src/periodentafel.hpp@ c53e0b

Last change on this file since c53e0b was 5dba7a, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Made the periodentafel use STL-containers instead of custom llists

  • Property mode set to 100755
File size: 1.8 KB
RevLine 
[375dcf]1#ifndef PERIODENTAFEL_HPP_
2#define PERIODENTAFEL_HPP_
3
[17b3a5c]4/*********************************************** includes ***********************************/
5
[375dcf]6// include config.h
7#ifdef HAVE_CONFIG_H
8#include <config.h>
9#endif
10
[4dca8e]11#include <iostream>
[5dba7a]12#include <map>
13#include <iterator>
[375dcf]14
[4dca8e]15#include "defs.hpp"
[5dba7a]16#include "types.hpp"
[375dcf]17
[17b3a5c]18/****************************************** forward declarations *****************************/
19
20class element;
21
22/********************************************** declarations *******************************/
[e08f45]23
[375dcf]24
25/** Periodentafel is a list of all elements sorted by their atomic number.
26 */
27class periodentafel {
[5dba7a]28 /******* Types *********/
29 private:
30 typedef std::map<atomicNumber_t,element*> elementSet;
31 public:
32 typedef elementSet::iterator iterator;
33 typedef elementSet::const_iterator const_iterator;
34 typedef std::reverse_iterator<const_iterator> reverse_iterator;
[a048fa]35 public:
[5dba7a]36
[a048fa]37 char header1[MAXSTRINGSIZE]; //!< store first header line
38 char header2[MAXSTRINGSIZE]; //!< store second header line
[e08f45]39
[a048fa]40 periodentafel();
41 ~periodentafel();
[e08f45]42
[5dba7a]43 iterator AddElement(element * const pointer);
44 void RemoveElement(element * const pointer);
45 void CleanupPeriodtable();
46 const element *FindElement(atomicNumber_t) const;
47 const element *FindElement(const char * const shorthand) const;
48 const element *AskElement() const;
49 const element *EnterElement();
50
51 const_iterator begin();
52 const_iterator end();
53 reverse_iterator rbegin();
54 reverse_iterator rend();
55 bool Output(std::ostream * const output) const;
56 bool Checkout(std::ostream * const output, const int * const checkliste) const;
[069034]57 bool LoadPeriodentafel(const char * const path);
58 bool StorePeriodentafel(const char * const path) const;
[e08f45]59
[a048fa]60 private:
[5dba7a]61 elementSet elements;
[375dcf]62};
63
64
65#endif /*PERIODENTAFEL_HPP_*/
Note: See TracBrowser for help on using the repository browser.