Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3248 in orxonox.OLD for orxonox/branches/parenting/src/list.h


Ignore:
Timestamp:
Dec 22, 2004, 3:28:14 PM (19 years ago)
Author:
patrick
Message:

orxonox/branches/parenting: defined all function/variables now will have to implement them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/parenting/src/list.h

    r3224 r3248  
    7878 
    7979
    80   void add(WorldEntity* entity);
    81   void remove(WorldEntity* entity);
     80  void add(T* entity);
     81  void remove(T* entity);
    8282  void destroy();
    8383  T* firstElement();
     
    104104
    105105template<class T>
    106 void tList<T>::add(WorldEntity* entity)
     106void tList<T>::add(T* entity)
    107107{
    108108  listElement* el = new listElement;
     
    120120
    121121template<class T>
    122 void tList<T>::remove(WorldEntity* entity)
     122void tList<T>::remove(T* entity)
    123123{
    124124  this->currentEl = this->first;
Note: See TracChangeset for help on using the changeset viewer.