Ignore:
Timestamp:
Oct 19, 2009, 1:09:29 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
3b0ba2
Parents:
99bed3
Message:

Huge Refactoring: class atom split up into several inherited classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/bond.cpp

    r99bed3 r6b937bd  
    9595 * \return pointer to the other atom in the bond, NULL if no match (indicates something's wrong with the bond)
    9696 */
    97 atom * bond::GetOtherAtom(const atom *Atom) const
     97atom * bond::GetOtherAtom(const ParticleInfo *Atom) const
    9898{
    9999  if(leftatom == Atom)
     
    118118 * \return true if it is either bond::leftatom or bond::rightatom, false otherwise
    119119 */
    120 bool bond::Contains(const atom *ptr)
     120bool bond::Contains(const ParticleInfo *ptr)
    121121{
    122122  return ((leftatom == ptr) || (rightatom == ptr));
Note: See TracChangeset for help on using the changeset viewer.