Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/element.cpp

    read4e6 rd5af3e  
    99
    1010#include "element.hpp"
    11 
    12 using namespace std;
    1311
    1412/************************************* Functions for class element **********************************/
     
    3735 * \param *out outstream
    3836 */
    39 bool element::Output(ostream * const out) const
     37bool element::Output(ofstream * const out) const
    4038{
    4139  if (out != NULL) {
     
    5250 * \param NoOfAtoms total number of atom of this element type
    5351 */
    54 bool element::Checkout(ostream * const out, const int Number, const int NoOfAtoms) const
     52bool element::Checkout(ofstream * const out, const int Number, const int NoOfAtoms) const
    5553{
    5654  if (out != NULL) {
     
    6058    return false;
    6159};
    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.