Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2006, 2:59:17 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some std::list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/loading/load_param_description.h

    r5708 r7130  
    2323
    2424#include "base_object.h"
     25#include <list>
    2526
    2627// Forward Declaration //
    27 template<class T> class tList;
    2828class MultiType;
    2929
     
    6868
    6969  static void printAll(const char* fileName = NULL);
    70   static tList<const char>* searchClassWithShort(const char* classNameBegin);
     70  static std::list<const char*> searchClassWithShort(const char* classNameBegin);
    7171//  static const LoadParamDescription* getClass(const char* className);
    7272
    7373 private:
    74   static bool                          parametersDescription;  //!< if parameter-description should be enabled.
    75   static tList<LoadClassDescription>* classList;              //!< a list, that stores all the loadable classes. (after one instance has been loaded)
    76   char*                                className;              //!< name of the class
     74  static bool                              parametersDescription;  //!< if parameter-description should be enabled.
     75  static std::list<LoadClassDescription*>* classList;              //!< a list, that stores all the loadable classes. (after one instance has been loaded)
     76  char*                                    className;              //!< name of the class
    7777
    78   tList<LoadParamDescription>*         paramList;              //!< List of parameters this class knows.
     78  std::list<LoadParamDescription*>         paramList;              //!< List of parameters this class knows.
    7979};
    8080
Note: See TracChangeset for help on using the changeset viewer.