Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 7, 2010, 12:58:52 AM (14 years ago)
Author:
landauf
Message:

enhanced documentation of some core classes and added examples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/src/libraries/core/ConfigValueContainer.h

    r7363 r7372  
    3030    @file
    3131    @ingroup Config ConfigFile
    32     @brief Definition of the ConfigValueContainer class.
     32    @brief Declaration of the ConfigValueContainer class.
    3333
    3434    The ConfigValueContainer class contains all needed information about a configurable variable:
     
    7979
    8080
    81     //! The ConfigValuecontainer contains all needed information about a configurable variable.
    8281    /**
     82        @brief The ConfigValuecontainer contains all needed information about a configurable variable.
     83
    8384        The ConfigValueContainer class contains all needed information about a configurable variable:
    8485         - the name of the variable
     
    216217            }
    217218
    218             /** @brief Returns the name of this container. */
     219            /// Returns the name of this container.
    219220            inline const std::string& getName() const
    220221                { 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.
    222223            inline const std::string& getSectionName() const
    223224                { return this->sectionname_; }
    224             /** @brief Returns the associated identifier (can be NULL). */
     225            /// Returns the associated identifier (can be NULL).
    225226            inline Identifier* getIdentifier() const
    226227                { return this->identifier_; }
    227             /** @brief Returns true if this config-value is a vector */
     228            /// Returns true if this config-value is a vector.
    228229            inline bool isVector() const
    229230                { 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).
    231232            inline unsigned int getVectorSize() const
    232233                { return this->valueVector_.size(); }
     
    268269            void update();
    269270
    270             /** @brief Converts the config-value to a string. @return The string */
     271            /// Converts the config-value to a string.
    271272            inline std::string toString() const
    272273                { 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.
    274275            inline std::string getTypename() const
    275276                { return this->value_.getTypename(); }
Note: See TracChangeset for help on using the changeset viewer.