Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/periodentafel.hpp

    read4e6 rfb73b8  
    11#ifndef PERIODENTAFEL_HPP_
    22#define PERIODENTAFEL_HPP_
     3
     4using namespace std;
    35
    46/*********************************************** includes ***********************************/
     
    1012
    1113#include <iostream>
    12 #include <map>
    13 #include <iterator>
    1414
    1515#include "defs.hpp"
    16 #include "types.hpp"
    1716
    1817/****************************************** forward declarations *****************************/
     
    2625 */
    2726class periodentafel {
    28   /******* Types *********/
    29   private:
    30     typedef std::map<atomicNumber_t,element*> elementSet;
    3127  public:
    32     typedef elementSet::iterator iterator;
    33     typedef elementSet::const_iterator const_iterator;
    34     typedef std::reverse_iterator<const_iterator> reverse_iterator;
    35   public:
    36 
     28    element *start; //!< start of element list
     29    element *end;   //!< end of element list
    3730    char header1[MAXSTRINGSIZE]; //!< store first header line
    3831    char header2[MAXSTRINGSIZE]; //!< store second header line
     
    4134  ~periodentafel();
    4235
    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;
     36  bool AddElement(element * const pointer);
     37  bool RemoveElement(element * const pointer);
     38  bool CleanupPeriodtable();
     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;
    5745  bool LoadPeriodentafel(const char * const path);
    5846  bool StorePeriodentafel(const char * const path) const;
    5947
    6048  private:
    61     elementSet elements;
    6249};
    6350
Note: See TracChangeset for help on using the changeset viewer.