Changes in src/element.hpp [e138de:ead4e6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/element.hpp
re138de read4e6 9 9 #define ELEMENT_HPP_ 10 10 11 using namespace std;12 13 11 /*********************************************** includes ***********************************/ 14 12 … … 19 17 20 18 #include <iostream> 19 #include <string> 21 20 22 21 #include "defs.hpp" 22 #include "types.hpp" 23 23 24 24 /********************************************** declarations *******************************/ … … 50 50 ~element(); 51 51 52 // accessor functions 53 atomicNumber_t getNumber() const; 54 std::string getSymbol() const; 55 52 56 //> print element entries to screen 53 bool Output( ofstream * const out) const;54 bool Checkout( ofstream * const out, const int No, const int NoOfAtoms) const;57 bool Output(std::ostream * const out) const; 58 bool Checkout(std::ostream * const out, const int No, const int NoOfAtoms) const; 55 59 56 60 private:
Note:
See TracChangeset
for help on using the changeset viewer.