- Timestamp:
- Apr 27, 2006, 4:00:04 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/lang/class_list.cc
r7221 r7396 35 35 36 36 /** 37 * Creates a new ClassList37 * @brief Creates a new ClassList 38 38 */ 39 39 ClassList::ClassList(ClassID classID, unsigned long classIDFull, const std::string& className) … … 45 45 46 46 /** 47 * standard deconstructor47 * @brief standard deconstructor 48 48 */ 49 49 ClassList::~ClassList () … … 89 89 90 90 /** 91 * removes an Object from a the ClassList91 * @brief removes an Object from a the ClassList 92 92 * @param objectPointer the Object to delete from the List 93 93 */ … … 107 107 108 108 /** 109 * grabs the names of all Classes, and injects it into a List of const chars109 * @brief grabs the names of all Classes, and injects it into a List of const chars 110 110 * @return the generated List 111 111 * … … 128 128 129 129 /** 130 * searches for classID and returns the list of Entities130 * @brief searches for classID and returns the list of Entities 131 131 * @param classID the ID of the class to get the list from 132 132 * @return the List accessed by classID, or NULL if not found … … 151 151 152 152 /** 153 * searches for className and returns the list of Entities153 * @brief searches for className and returns the list of Entities 154 154 * @param className the name of the class to get the list from 155 155 * @return the List accessed by classID, or NULL if not found … … 201 201 202 202 /** 203 * checks if the BaseObject* object exists.203 * @brief checks if the BaseObject* object exists. 204 204 * @param objectName the name of the BaseObject to look for 205 205 * @param classID if not CL_NULL it will only search through a specific type of Objects. Otherwise it will be searched everywhere. … … 236 236 237 237 /** 238 * checks if the BaseObject* object exists.238 * @brief checks if the BaseObject* object exists. 239 239 * @param object the Pointer to a BaseObject to check if it exists 240 240 * @param classID if not CL_NULL it will only search through a specific type of Objects. Otherwise it will be searched everywhere. … … 267 267 268 268 /** 269 * prints out a string of all the types this Object matches269 * @brief prints out a string of all the types this Object matches 270 270 * @param object a Pointer to the object to analyze 271 271 */ … … 281 281 282 282 /** 283 * converts a ClassID into a string283 * @brief converts a ClassID into a string 284 284 * @param classID the ClassID to search for 285 285 * @return a String containing the name of the Class, NULL if the Class was not found … … 294 294 295 295 /** 296 * converts a String into a ClassID296 * @brief converts a String into a ClassID 297 297 * @param className the name of the class to search for 298 298 * @return the ClassID. CL_NULL, if the class was not found. … … 305 305 306 306 /** 307 * checks if this ClassList is named className307 * @brief checks if this ClassList is named className 308 308 * @param className the Name to check this ClassList's ClassName against 309 309 * @returns true on match, false otherwise … … 317 317 318 318 /** 319 * Print out some very nice debug information319 * @brief Print out some very nice debug information 320 320 * @param debugLevel the level of verbosity 321 321 * @param classID the class that should be displayed (if CL_NULL (default) all classes will be displayed) … … 365 365 366 366 /** 367 * Print out some very nice debug information367 * @brief Print out some very nice debug information 368 368 * @param debugLevel the level of verbosity 369 369 * @param className the class that should be displayed.
Note: See TracChangeset
for help on using the changeset viewer.