Changeset 5dba7a for molecuilder/src/element.cpp
- Timestamp:
- Mar 12, 2010, 1:16:01 PM (16 years ago)
- Children:
- d639c7
- Parents:
- 1e0785
- File:
-
- 1 edited
-
molecuilder/src/element.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/element.cpp
r1e0785 r5dba7a 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.
