Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/element.cpp

    rd5af3e read4e6  
    99
    1010#include "element.hpp"
     11
     12using namespace std;
    1113
    1214/************************************* Functions for class element **********************************/
     
    3537 * \param *out outstream
    3638 */
    37 bool element::Output(ofstream * const out) const
     39bool element::Output(ostream * const out) const
    3840{
    3941  if (out != NULL) {
     
    5052 * \param NoOfAtoms total number of atom of this element type
    5153 */
    52 bool element::Checkout(ofstream * const out, const int Number, const int NoOfAtoms) const
     54bool element::Checkout(ostream * const out, const int Number, const int NoOfAtoms) const
    5355{
    5456  if (out != NULL) {
     
    5860    return false;
    5961};
     62
     63atomicNumber_t element::getNumber() const{
     64  return Z;
     65}
     66
     67string element::getSymbol() const{
     68  return string(symbol);
     69}
Note: See TracChangeset for help on using the changeset viewer.