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