Changes in src/element.cpp [ead4e6:d5af3e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/element.cpp
read4e6 rd5af3e 9 9 10 10 #include "element.hpp" 11 12 using namespace std;13 11 14 12 /************************************* Functions for class element **********************************/ … … 37 35 * \param *out outstream 38 36 */ 39 bool element::Output(o stream * const out) const37 bool element::Output(ofstream * const out) const 40 38 { 41 39 if (out != NULL) { … … 52 50 * \param NoOfAtoms total number of atom of this element type 53 51 */ 54 bool element::Checkout(o stream * const out, const int Number, const int NoOfAtoms) const52 bool element::Checkout(ofstream * const out, const int Number, const int NoOfAtoms) const 55 53 { 56 54 if (out != NULL) { … … 60 58 return false; 61 59 }; 62 63 atomicNumber_t element::getNumber() const{64 return Z;65 }66 67 string element::getSymbol() const{68 return string(symbol);69 }
Note:
See TracChangeset
for help on using the changeset viewer.