Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4448 in orxonox.OLD for orxonox/trunk/src/lib/coord/null_parent.h


Ignore:
Timestamp:
Jun 1, 2005, 10:55:53 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags, and cleanup of NullParent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/coord/null_parent.h

    r4441 r4448  
    11/*!
    2     \file proto_class.h
    3     \brief Definition of the proto class template, used quickly start work
     2    \file null_parent.h
     3    \brief Definition of the NullParent, the higest PNode of them all.
    44*/
    55
     
    88#define _NULL_PARENT_H
    99
    10 
    1110#include "p_node.h"
    1211
    13 
     12//! The top joint of all PNode's every PNode is somehow connected to this one.
    1413class NullParent : public PNode {
    1514
     
    1817  virtual ~NullParent ();
    1918
     19 private:
     20  NullParent (const Vector& absCoordinate = Vector());
    2021
    2122 private:
    22   NullParent (const Vector& absCoordinate = Vector());
    23   static NullParent* singletonRef;
     23  static NullParent* singletonRef;        //!< A reference to the NullParent
    2424
    2525};
Note: See TracChangeset for help on using the changeset viewer.