Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9869 in orxonox.OLD for trunk/src/util/track


Ignore:
Timestamp:
Oct 3, 2006, 12:19:30 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

Location:
trunk/src/util/track
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/track/pilot_node.cc

    r7868 r9869  
    2424
    2525
     26ObjectListDefinition(PilotNode);
    2627/**
    2728 *  standard constructor
     
    2930PilotNode::PilotNode ()
    3031{
    31    this->setClassID(CL_PILOT_PARENT, "PilotNode");
     32  this->registerObject(this, PilotNode::_objectList);
    3233   this->setName("PilotNode");
    3334
  • trunk/src/util/track/pilot_node.h

    r5039 r9869  
    1515//! The PilotNode is a node that enables the is driven by the Mouse
    1616class PilotNode : public WorldEntity, public EventListener {
     17  ObjectListDeclaration(PilotNode);
    1718
    1819 public:
  • trunk/src/util/track/track_node.cc

    r9406 r9869  
    2222
    2323
    24 
     24ObjectListDefinition(TracNode);
    2525/**
    2626 *  standard constructor
     
    2828TrackNode::TrackNode ()
    2929{
    30   this->setClassID(CL_TRACK_NODE, "TrackNode");
     30  this->registerObject(this, TracNode::_objectList);
    3131  this->setName("TrackNode");
    3232
  • trunk/src/util/track/track_node.h

    r5405 r9869  
    1 /*! 
     1/*!
    22 * @file track_node.h
    33  *  Definition of the TrackNode are located here
    4    
    5     the TrackNode is the node, that follows the Track (and the TrackManager) 
     4
     5    the TrackNode is the node, that follows the Track (and the TrackManager)
    66    through the level.
    7     Under normal confitions the Plyaer(s) are 
     7    Under normal confitions the Plyaer(s) are
    88*/
    99
     
    1818
    1919//! A node that follows the track.
    20 class TrackNode : public PNode 
     20class TrackNode : public PNode
    2121{
    22 
     22  ObjectListDeclaratrion(TracNode);
    2323 public:
    2424  TrackNode ();
Note: See TracChangeset for help on using the changeset viewer.