Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 13, 2005, 10:40:25 PM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Got the system to compile, the basic backbone now runs. What remains to be done is implementing all necessary functions to load all vital classes into a world

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/track_manager.h

    r3525 r3530  
    1414#include "stdincl.h"
    1515#include "curve.h"
     16#include "substring.h"
    1617
    1718class PNode;
     
    3839  TrackElement* findByID(unsigned int trackID);
    3940  TrackElement* findByName(const char* trackName);
    40 
     41        void setName( const char* trackName);
     42       
    4143  bool isFresh;              //!< If no Points where added until now
    4244  bool isHotPoint;           //!< If the first node is a specialPoint;
     
    112114
    113115  TrackElement* findTrackElementByID(unsigned int trackID) const;
    114   TrackElement* findTrackElementByName(char* trackName) const;
     116  TrackElement* findTrackElementByName(const char* trackName) const;
    115117 
    116118 public:
     
    133135  void joinV(unsigned int count, int* trackIDs);
    134136  void finalize(void);
    135         void forkS( char* string);
    136         void joinS( char* string);
    137         void workOnS( char* string);
     137        void forkS( const char* string);
     138        void joinS( const char* string);
     139        void workOnS( const char* string);
    138140
    139141        // Method to load track data from file
Note: See TracChangeset for help on using the changeset viewer.