Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Sep 24, 2005, 10:30:08 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moving up and down through the buffer with [PageUp] and [PageDown] enabled

File:
1 edited

Legend:

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

    r5247 r5248  
    348348    T* seekElement(const T* element);
    349349    T* iteratorElement(const tIterator<T>* iterator);
     350    bool compareListPointer(const tList<T>* list);
    350351
    351352    /** another way to iterate through the list
     
    520521}
    521522
     523template<class T>
     524    bool tIterator<T>::compareListPointer(const tList<T>* list)
     525{
     526  return (this->list == list)?true:false;
     527}
     528
     529
    522530/**
    523531 *  use it to move through the list without interfering with the iteration
     
    538546}
    539547
    540 
    541548/**
    542549 *  use it to move backwards through the list without interfering with the itereation
Note: See TracChangeset for help on using the changeset viewer.