Changeset 5074 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Aug 19, 2005, 1:52:25 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/list.h
r5073 r5074 131 131 132 132 void add(T* entity); 133 void add First(T* entity);133 void addAtBeginning(T* entity); //!< @todo This should be made with an ENUM 134 134 void remove(T* entity); 135 135 void removeLast(); … … 212 212 */ 213 213 template<class T> 214 inline void tList<T>::add First(T* entity)214 inline void tList<T>::addAtBeginning(T* entity) 215 215 { 216 216 if( unlikely(entity == NULL)) return;
Note: See TracChangeset
for help on using the changeset viewer.