Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 15, 2008, 4:31:58 PM (16 years ago)
Author:
landauf
Message:
  • removed IdentifierList and replaced it by a std::list
  • changed several doxygen tags
File:
1 edited

Legend:

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

    r790 r813  
    2626 */
    2727
    28 /*!
     28/**
    2929    @file ObjectList.h
    3030    @brief Definition and implementation of the ObjectList class.
     
    8888//            void remove(OrxonoxClass* object, bool bIterateForwards = true);
    8989
    90             /** @returns the first element in the list */
     90            /** @brief Returns the first element in the list. @return The first element */
    9191            inline static Iterator<T> start()
    9292                { return Iterator<T>(getList()->first_); }
    9393
    94             /** @returns the first element in the list */
     94            /** @brief Returns the first element in the list. @return The first element */
    9595            inline static Iterator<T> begin()
    9696                { return Iterator<T>(getList()->first_); }
    9797
    98             /** @returns the last element in the list */
     98            /** @brief Returns the last element in the list. @return The last element */
    9999            inline static Iterator<T> end()
    100100                { return Iterator<T>(getList()->last_); }
     
    134134
    135135    /**
    136         @returns a pointer to the only existing instance for the given class T.
     136        @brief Returns a pointer to the only existing instance for the given class T. @return The instance
    137137    */
    138138    template <class T>
Note: See TracChangeset for help on using the changeset viewer.