Changes in src/element.cpp [d5af3e:ead4e6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/element.cpp
rd5af3e read4e6 9 9 10 10 #include "element.hpp" 11 12 using namespace std; 11 13 12 14 /************************************* Functions for class element **********************************/ … … 35 37 * \param *out outstream 36 38 */ 37 bool element::Output(o fstream * const out) const39 bool element::Output(ostream * const out) const 38 40 { 39 41 if (out != NULL) { … … 50 52 * \param NoOfAtoms total number of atom of this element type 51 53 */ 52 bool element::Checkout(o fstream * const out, const int Number, const int NoOfAtoms) const54 bool element::Checkout(ostream * const out, const int Number, const int NoOfAtoms) const 53 55 { 54 56 if (out != NULL) { … … 58 60 return false; 59 61 }; 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.