Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/track/track_node.h @ 7459

Last change on this file since 7459 was 5405, checked in by bensch, 19 years ago

orxonox/trunk: renamed definition to the right term declaration…

File size: 584 bytes
RevLine 
[3522]1/*!
[5039]2 * @file track_node.h
[4836]3  *  Definition of the TrackNode are located here
[3522]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
8*/
9
10
11#ifndef _TRACK_NODE_H
12#define _TRACK_NODE_H
13
14#include "p_node.h"
15
[5405]16/* FORWARD DECLARATION */
[3522]17class TrackManager;
18
[4489]19//! A node that follows the track.
[3836]20class TrackNode : public PNode
21{
[3522]22
23 public:
[3556]24  TrackNode ();
[3533]25  virtual ~TrackNode ();
[3522]26
27 private:
[4489]28  TrackManager* trackManager;         //!< reference to the TrackManager
[3522]29
30};
31
32#endif /* _TRACK_NODE_H */
Note: See TracBrowser for help on using the repository browser.