Changeset 5171 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Sep 7, 2005, 1:08:21 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/list.h
r5131 r5171 37 37 void add(T* entity); 38 38 void addAtBeginning(T* entity); //!< @todo This should be made with an ENUM 39 void remove( T* entity);39 void remove(const T* entity); 40 40 void removeLast(); 41 41 void flush(); … … 138 138 */ 139 139 template<class T> 140 inline void tList<T>::remove( T* entity)140 inline void tList<T>::remove(const T* entity) 141 141 { 142 142 this->currentEl = this->first;
Note: See TracChangeset
for help on using the changeset viewer.