Changeset 5690 for code/branches/resource2
- Timestamp:
- Aug 29, 2009, 10:04:43 PM (15 years ago)
- Location:
- code/branches/resource2/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/resource2/src/core/ConfigValueContainer.h
r3301 r5690 31 31 @brief Definition of the ConfigValueContainer class. 32 32 33 The ConfigValueContainer class contains all needed information sabout a configurable variable:33 The ConfigValueContainer class contains all needed information about a configurable variable: 34 34 - the name of the variable 35 35 - the name of the class the variable belongs to … … 79 79 80 80 81 //! The ConfigValuecontainer contains all needed information sabout a configurable variable.81 //! The ConfigValuecontainer contains all needed information about a configurable variable. 82 82 /** 83 The ConfigValueContainer class contains all needed information sabout a configurable variable:83 The ConfigValueContainer class contains all needed information about a configurable variable: 84 84 - the name of the variable 85 85 - the name of the class the variable belongs to -
code/branches/resource2/src/core/Identifier.cc
r3325 r5690 138 138 if (!this->bCreatedOneObject_ && Identifier::isCreatingHierarchy()) 139 139 { 140 // If no: We have to store the information sand initialize the Identifier140 // If no: We have to store the information and initialize the Identifier 141 141 COUT(4) << "*** ClassIdentifier: Register Class in " << this->getName() << "-Singleton -> Initialize Singleton." << std::endl; 142 142 if (bRootClass) -
code/branches/resource2/src/core/Identifier.h
r3370 r5690 31 31 @brief Definition of the Identifier, ClassIdentifier and SubclassIdentifier classes, implementation of the ClassIdentifier and SubclassIdentifier classes. 32 32 33 The Identifier contains all needed information sabout the class it belongs to:33 The Identifier contains all needed information about the class it belongs to: 34 34 - the name 35 35 - a list with all objects … … 73 73 // ### Identifier ### 74 74 // ############################### 75 //! The Identifier is used to identify the class of an object and to store information sabout the class.76 /** 77 The Identifier contains all needed information sabout the class it belongs to:75 //! The Identifier is used to identify the class of an object and to store information about the class. 76 /** 77 The Identifier contains all needed information about the class it belongs to: 78 78 - the name 79 79 - a list with all objects … … 335 335 /** 336 336 ClassIdentifier is a Singleton, which means that only one object of a given type T exists. 337 This makes it possible to store information sabout a class, sharing them with all337 This makes it possible to store information about a class, sharing them with all 338 338 objects of that class without defining static variables in every class. 339 339 -
code/branches/resource2/src/core/TclThreadManager.cc
r3370 r5690 57 57 58 58 /** 59 @brief A struct containing all information sabout a Tcl-interpreter59 @brief A struct containing all information about a Tcl-interpreter 60 60 */ 61 61 struct TclInterpreterBundle -
code/branches/resource2/src/network/ClientInformation.h
r3304 r5690 49 49 50 50 /** 51 * This class implements a list for client information s51 * This class implements a list for client information 52 52 * @author Oliver Scheuss 53 53 */ -
code/branches/resource2/src/util/Debug.h
r3196 r5690 29 29 /** 30 30 @file 31 @brief Handles different output-levels of errors, warnings, infos and debug information s.31 @brief Handles different output-levels of errors, warnings, infos and debug information. 32 32 33 33 The COUT(level) macro acts like std::cout, but the output is only performed if the given … … 45 45 1: Errors 46 46 2: Warnings 47 3: Information s47 3: Information 48 48 4: Debug information 49 49 5: More debug information 50 6: Crazy debug information s50 6: Crazy debug information 51 51 52 52 @example
Note: See TracChangeset
for help on using the changeset viewer.