Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5074 in orxonox.OLD for trunk/src/lib/util/list.h


Ignore:
Timestamp:
Aug 19, 2005, 1:52:25 AM (19 years ago)
Author:
bensch
Message:

Shell: the shell outputs one Line now :)

File:
1 edited

Legend:

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

    r5073 r5074  
    131131
    132132  void add(T* entity);
    133   void addFirst(T* entity);
     133  void addAtBeginning(T* entity); //!< @todo This should be made with an ENUM
    134134  void remove(T* entity);
    135135  void removeLast();
     
    212212 */
    213213template<class T>
    214     inline void tList<T>::addFirst(T* entity)
     214    inline void tList<T>::addAtBeginning(T* entity)
    215215{
    216216  if( unlikely(entity == NULL)) return;
Note: See TracChangeset for help on using the changeset viewer.