Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3594 in orxonox.OLD for orxonox/trunk/src/track_manager.h


Ignore:
Timestamp:
Mar 17, 2005, 5:27:36 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: TrackManager now uses tList instead of Arrays (). this is slower, but more compatible, and should have less errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/track_manager.h

    r3593 r3594  
    3838  bool backLoopCheck(TrackElement* trackElem);
    3939
     40  TrackElement* getChild(int childNumber);
     41  void setName(const char* name);
     42  char* getName(void) const;
     43
    4044  // atributes
    4145  bool isFresh;              //!< If no Points where added until now
     
    5357  Curve* curve;              //!< The Curve of this TrackElement
    5458  int childCount;            //!< The number of Children This TrackElement has.
    55   TrackElement** children;   //!< A TrackElement can have a Tree of following TrackElements.
     59  tList<TrackElement>* children;   //!< A TrackElement can have a Tree of following TrackElements.
    5660
    57   void setName(const char* name);
    58   char* getName(void) const;
    5961
    6062  // runtime
Note: See TracChangeset for help on using the changeset viewer.