- Timestamp:
- Sep 7, 2010, 12:58:52 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/libraries/core/ConfigValueContainer.h
r7363 r7372 30 30 @file 31 31 @ingroup Config ConfigFile 32 @brief De finition of the ConfigValueContainer class.32 @brief Declaration of the ConfigValueContainer class. 33 33 34 34 The ConfigValueContainer class contains all needed information about a configurable variable: … … 79 79 80 80 81 //! The ConfigValuecontainer contains all needed information about a configurable variable.82 81 /** 82 @brief The ConfigValuecontainer contains all needed information about a configurable variable. 83 83 84 The ConfigValueContainer class contains all needed information about a configurable variable: 84 85 - the name of the variable … … 216 217 } 217 218 218 / ** @brief Returns the name of this container. */219 /// Returns the name of this container. 219 220 inline const std::string& getName() const 220 221 { return this->varname_; } 221 / ** @brief Returns the name of the section this config value is in. */222 /// Returns the name of the section this config value is in. 222 223 inline const std::string& getSectionName() const 223 224 { return this->sectionname_; } 224 / ** @brief Returns the associated identifier (can be NULL). */225 /// Returns the associated identifier (can be NULL). 225 226 inline Identifier* getIdentifier() const 226 227 { return this->identifier_; } 227 / ** @brief Returns true if this config-value is a vector */228 /// Returns true if this config-value is a vector. 228 229 inline bool isVector() const 229 230 { return this->bIsVector_; } 230 / ** @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). 231 232 inline unsigned int getVectorSize() const 232 233 { return this->valueVector_.size(); } … … 268 269 void update(); 269 270 270 / ** @brief Converts the config-value to a string. @return The string */271 /// Converts the config-value to a string. 271 272 inline std::string toString() const 272 273 { return this->value_; } 273 / ** @brief Returns the typename of the assigned config-value. @return The typename */274 /// Returns the typename of the assigned config-value. 274 275 inline std::string getTypename() const 275 276 { return this->value_.getTypename(); }
Note: See TracChangeset
for help on using the changeset viewer.