Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5171 in orxonox.OLD for trunk/src/lib/util


Ignore:
Timestamp:
Sep 7, 2005, 1:08:21 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some more implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/list.h

    r5131 r5171  
    3737  void add(T* entity);
    3838  void addAtBeginning(T* entity); //!< @todo This should be made with an ENUM
    39   void remove(T* entity);
     39  void remove(const T* entity);
    4040  void removeLast();
    4141  void flush();
     
    138138*/
    139139template<class T>
    140 inline void tList<T>::remove(T* entity)
     140inline void tList<T>::remove(const T* entity)
    141141{
    142142  this->currentEl = this->first;
Note: See TracChangeset for help on using the changeset viewer.