Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 25, 2010, 9:32:34 PM (13 years ago)
Author:
dafrick
Message:

Some more minor changes in documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/LevelManager.cc

    r7802 r7804  
    2626 *
    2727 */
     28
     29/**
     30    @file LevelManager.cc
     31    @brief Implementation of the LevelManager singleton.
     32*/
    2833
    2934#include "LevelManager.h"
     
    187192        The LevelInfoItems are sorted in alphabetical order accoridng to the name of the Level.
    188193        This method is most efficiently called with consecutive indices (or at least ascending indices).
     194    @param index
     195        The index of the item that should be returned.
    189196    @return
    190197        Returns a pointer to the LevelInfoItem at the given index.
     
    192199    LevelInfoItem* LevelManager::getAvailableLevelListItem(unsigned int index)
    193200    {
    194         if (index >= this->availableLevels_.size())
     201        if(index >= this->availableLevels_.size())
    195202            return NULL;
    196203
Note: See TracChangeset for help on using the changeset viewer.