ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/types/AtomStamp.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/types/AtomStamp.hpp (file contents):
Revision 2483 by tim, Mon Dec 5 18:23:30 2005 UTC vs.
Revision 2543 by gezelter, Wed Jan 11 18:41:01 2006 UTC

# Line 68 | Line 68 | class AtomStamp  : public DataHolder {
68        virtual void validate();
69        typedef std::set<int>::iterator AtomIter;
70        typedef std::vector<int>::iterator BondIter;
71 <      int getFirstBonedAtom(AtomIter& ai) {
71 >      int getFirstBondedAtom(AtomIter& ai) {
72          ai = bondedAtoms_.begin();
73          return ai != bondedAtoms_.end() ? *ai : -1;
74        }
75        
76 <      int getNextBonedAtom(AtomIter& ai) {
76 >      int getNextBondedAtom(AtomIter& ai) {
77          ++ai;
78          return ai != bondedAtoms_.end() ? *ai : -1;
79        }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines