Changeset 7401 for code/trunk/src/libraries/core/ConfigValueContainer.h
- Timestamp:
- Sep 11, 2010, 12:34:00 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/doc (added) merged: 7290-7292,7296-7300,7302-7304,7306-7312,7315-7318,7323,7325,7327,7331-7332,7334-7335,7345-7347,7352-7353,7356-7357,7361,7363-7367,7371-7375,7388
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/ConfigValueContainer.h
r6536 r7401 29 29 /** 30 30 @file 31 @brief Definition of the ConfigValueContainer class. 31 @ingroup Config ConfigFile 32 @brief Declaration of the ConfigValueContainer class, caches a config-value. 32 33 33 34 The ConfigValueContainer class contains all needed information about a configurable variable: … … 78 79 79 80 80 //! The ConfigValuecontainer contains all needed information about a configurable variable.81 81 /** 82 @brief The ConfigValuecontainer contains all needed information about a configurable variable. 83 82 84 The ConfigValueContainer class contains all needed information about a configurable variable: 83 85 - the name of the variable … … 117 119 @param type The type of the corresponding config-file 118 120 @param identifier The identifier of the class the variable belongs to 121 @param sectionname Name of the section the configValue should be put in. 119 122 @param varname The name of the variable 120 123 @param defvalue The default-value 124 @param value Only needed do determine the right type. 121 125 */ 122 126 template <class D, class V> … … 213 217 } 214 218 215 / ** @brief Returns the name of this container. */219 /// Returns the name of this container. 216 220 inline const std::string& getName() const 217 221 { return this->varname_; } 218 / ** @brief Returns the name of the section this config value is in. */222 /// Returns the name of the section this config value is in. 219 223 inline const std::string& getSectionName() const 220 224 { return this->sectionname_; } 221 / ** @brief Returns the associated identifier (can be NULL). */225 /// Returns the associated identifier (can be NULL). 222 226 inline Identifier* getIdentifier() const 223 227 { return this->identifier_; } 224 / ** @brief Returns true if this config-value is a vector */228 /// Returns true if this config-value is a vector. 225 229 inline bool isVector() const 226 230 { return this->bIsVector_; } 227 / ** @brief Returns the vectors size (or zero if it's not a vector). */231 /// Returns the vectors size (or zero if it's not a vector). 228 232 inline unsigned int getVectorSize() const 229 233 { return this->valueVector_.size(); } … … 265 269 void update(); 266 270 267 / ** @brief Converts the config-value to a string. @return The string */271 /// Converts the config-value to a string. 268 272 inline std::string toString() const 269 273 { return this->value_; } 270 / ** @brief Returns the typename of the assigned config-value. @return The typename */274 /// Returns the typename of the assigned config-value. 271 275 inline std::string getTypename() const 272 276 { return this->value_.getTypename(); }
Note: See TracChangeset
for help on using the changeset viewer.