Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Atom/atom.hpp

    rd05088 r8cc22f  
    2525#include "atom_bondedparticle.hpp"
    2626#include "atom_graphnode.hpp"
    27 #include "atom_observable.hpp"
    2827#include "atom_particleinfo.hpp"
    2928#include "Atom/TesselPoint.hpp"
    3029#include "types.hpp"
    3130
    32 #include "CodePatterns/Observer/Observer.hpp"
    3331#include "CodePatterns/enumeration.hpp"
    3432
     
    4644 * Class incorporates position, type
    4745 */
    48 class atom :
    49             public GraphNode,
    50             public BondedParticle,
    51             public TesselPoint
    52 {
     46class atom : public GraphNode, public BondedParticle, public TesselPoint {
    5347  friend atom* NewAtom(atomId_t);
    5448  friend void  DeleteAtom(atom*);
    55 
    56   atom *father;   //!< In many-body bond order fragmentations points to originating atom
    57   int *sort;      //!< sort criteria
    58 
    5949public:
     50    atom *father;   //!< In many-body bond order fragmentations points to originating atom
     51    int *sort;      //!< sort criteria
    6052
    6153  /** Clones this atom.
     
    138130   */
    139131  const atom *GetTrueFather() const;
    140 
    141   /** Const getter for the atoms father.
    142    *
    143    * \return father of this atom
    144    */
    145   atom * const getFather() const
    146   { return father; }
    147 
    148   /** Sets the father for this atom.
    149    *
    150    * \param _father ptr to father atom
    151    */
    152   void setFather(atom * const _father);
    153132
    154133  /** Compares the indices of \a this atom with a given \a ptr.
     
    249228    void unsetMolecule();
    250229
    251 //    virtual void update(Observable *publisher);
    252 //    virtual void recieveNotification(Observable *publisher, Notification_ptr notification);
    253     virtual void subjectKilled(Observable *publisher);
    254230
    255231  private:
Note: See TracChangeset for help on using the changeset viewer.