Changeset b65771
- Timestamp:
- Aug 3, 2009, 4:43:42 PM (16 years ago)
- Children:
- 3219a0
- Parents:
- a8c8ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom.cpp
ra8c8ba rb65771 89 89 }; 90 90 91 ostream & operator << (ostream &ost, atom &a)91 ostream & operator << (ostream &ost, const atom &a) 92 92 { 93 93 ost << "[" << a.Name << "|" << &a << "]"; … … 99 99 * \return true - this one's is smaller, false - not 100 100 */ 101 bool atom::Compare( atom &ptr)101 bool atom::Compare(const atom &ptr) 102 102 { 103 103 if (nr < ptr.nr)
Note:
See TracChangeset
for help on using the changeset viewer.