Changeset 7804
- Timestamp:
- Dec 25, 2010, 9:32:34 PM (14 years ago)
- Location:
- code/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/network/MasterServerComm.h
r7801 r7804 88 88 int sendRequest( std::string data ); 89 89 90 /** \param callback The callback function to call with data receiv ced.90 /** \param callback The callback function to call with data received. 91 91 * \return 0 for success, other for error 92 92 * -
code/trunk/src/orxonox/LevelInfo.h
r7802 r7804 50 50 /** 51 51 @brief 52 The LevelInfoItem class stores information regarding a @ref orxonox::Level "Level" and makes that information it accessible trough the @ref orxonox::LevelManager "LevelManager".52 The LevelInfoItem class stores information regarding a @ref orxonox::Level "Level" and makes that information accessible through the @ref orxonox::LevelManager "LevelManager". 53 53 A LevelInfoItem object is commonly created from a @ref orxonox::LevelInfo "LevelInfo" object, using its <code>copy()</code> method. 54 54 55 55 @author 56 56 Damian 'Mozork' Frick 57 58 @ingroup Orxonox 57 59 */ 58 60 class _OrxonoxExport LevelInfoItem // tolua_export … … 160 162 @author 161 163 Damian 'Mozork' Frick 164 165 @ingroup Orxonox 162 166 */ 163 167 class _OrxonoxExport LevelInfo : public BaseObject, public LevelInfoItem … … 202 206 @brief 203 207 Struct that overloads the compare operation between two @ref orxonox::LevelInfoItem "LevelInfoItem" pointers. 208 209 @ingroup Orxonox 204 210 */ 205 211 struct LevelInfoCompare -
code/trunk/src/orxonox/LevelManager.cc
r7802 r7804 26 26 * 27 27 */ 28 29 /** 30 @file LevelManager.cc 31 @brief Implementation of the LevelManager singleton. 32 */ 28 33 29 34 #include "LevelManager.h" … … 187 192 The LevelInfoItems are sorted in alphabetical order accoridng to the name of the Level. 188 193 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. 189 196 @return 190 197 Returns a pointer to the LevelInfoItem at the given index. … … 192 199 LevelInfoItem* LevelManager::getAvailableLevelListItem(unsigned int index) 193 200 { 194 if 201 if(index >= this->availableLevels_.size()) 195 202 return NULL; 196 203 -
code/trunk/src/orxonox/LevelManager.h
r7803 r7804 26 26 * 27 27 */ 28 29 /** 30 @file LevelManager.h 31 @brief Definition of the LevelManager singleton. 32 @ingroup Orxonox 33 */ 28 34 29 35 #ifndef _LevelManager_H__ … … 56 62 @author 57 63 Damian 'Mozork' Frick 64 65 @ingroup Orxonox 58 66 */ 59 67 class _OrxonoxExport LevelManager
Note: See TracChangeset
for help on using the changeset viewer.