Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/core/ObjectList.h

    r1543 r1634  
    9494
    9595            /** @brief Returns the first element in the list. @return The first element */
    96             inline static Iterator<T> start()
     96            static Iterator<T> start()
    9797                { return Iterator<T>(ClassIdentifier<T>::getIdentifier()->getObjects()->first_); }
    9898
    9999            /** @brief Returns the first element in the list. @return The first element */
    100             inline static Iterator<T> begin()
     100            static Iterator<T> begin()
    101101                { return Iterator<T>(ClassIdentifier<T>::getIdentifier()->getObjects()->first_); }
    102102
    103103            /** @brief Returns the last element in the list. @return The last element */
    104             inline static Iterator<T> end()
     104            static Iterator<T> end()
    105105                { return Iterator<T>(ClassIdentifier<T>::getIdentifier()->getObjects()->last_); }
    106106
    107             inline void registerIterator(Iterator<T>* iterator)
     107            void registerIterator(Iterator<T>* iterator)
    108108                { this->iterators_.insert(this->iterators_.end(), (void*)iterator); }
    109             inline void unregisterIterator(Iterator<T>* iterator)
     109            void unregisterIterator(Iterator<T>* iterator)
    110110                { this->iterators_.erase((void*)iterator); }
    111111            void notifyIterators(ObjectListElement<T>* element);
Note: See TracChangeset for help on using the changeset viewer.