Changeset e0521b
- Timestamp:
- Aug 8, 2009, 7:17:51 PM (16 years ago)
- Children:
- 0ee99dc
- Parents:
- 67fced
- Location:
- molecuilder/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom.cpp
r67fced re0521b 119 119 }; 120 120 121 ostream & atom::operator << (ostream &ost) 122 { 123 ost << "[" << Name << "|" << this << "]"; 124 return ost; 125 }; 126 121 127 /** Compares the indices of \a this atom with a given \a ptr. 122 128 * \param ptr atom to compare index against -
molecuilder/src/atom.hpp
r67fced re0521b 49 49 atom(); 50 50 atom(class atom *pointer); 51 ~atom();51 virtual ~atom(); 52 52 53 53 bool Output(int ElementNo, int AtomNo, ofstream *out, const char *comment = NULL) const; … … 55 55 atom *GetTrueFather(); 56 56 bool Compare(const atom &ptr); 57 58 ostream & operator << (ostream &ost); 57 59 58 60 private:
Note:
See TracChangeset
for help on using the changeset viewer.
