Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 9, 2005, 10:50:20 AM (20 years ago)
Author:
bensch
Message:

orxonox/branches/trackManager: backloop-check created

File:
1 copied

Legend:

Unmodified
Added
Removed
  • orxonox/branches/trackManager/src/track_node.h

    r3455 r3463  
    11/*!
    2     \file proto_class.h
    3     \brief Definition of the proto class template, used quickly start work
     2    \file track_node.h
     3    \brief Definition of the TrackNode are located here
     4   
     5    the TrackNode is the node, that follows the Track (and the TrackManager)
     6    through the level.
     7    Under normal confitions the Plyaer(s) are
    48*/
    59
    610
    7 #ifndef _NULL_PARENT_H
    8 #define _NULL_PARENT_H
     11#ifndef _TRACK_NODE_H
     12#define _TRACK_NODE_H
    913
    10 #include "stdincl.h"
    1114#include "p_node.h"
    1215
     16/* FORWARD DEFINITION */
     17class TrackManager;
    1318
    14 class NullParent : public PNode {
     19class TrackNode : public PNode {
    1520
    1621 public:
    17   static NullParent* getInstance ();
    18   ~NullParent ();
     22  static TrackNode* getInstance ();
     23  ~TrackNode ();
    1924 
    20   static NullParent* singletonRef;
    21 
    2225  virtual void update (float timeStamp);
    2326
    2427 private:
    25   NullParent ();
    26   NullParent (Vector* absCoordinate);
     28  TrackNode ();
     29  TrackNode (Vector* absCoordinate);
     30
     31  static TrackNode* singletonRef;
     32  TrackManager* trackManager;
    2733
    2834};
    2935
    30 #endif /* _NULL_PARENT_H */
     36#endif /* _TRACK_NODE_H */
Note: See TracChangeset for help on using the changeset viewer.