Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

File:
1 edited

Legend:

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

    r1505 r1634  
    7979            /** @brief Returns the configured value. @param value This is only needed to determine the right type. @return The value */
    8080            template <typename T>
    81             inline ConfigValueContainer& getValue(T* value)
     81            ConfigValueContainer& getValue(T* value)
    8282                { this->value_.getValue(value); return *this; }
    8383            template <typename T>
    84             inline ConfigValueContainer& getValue(std::vector<T>* value)
     84            ConfigValueContainer& getValue(std::vector<T>* value)
    8585            {
    8686                value->clear();
     
    9191
    9292            template <typename T>
    93             inline void setVectorType(const std::vector<T>& value)
     93            void setVectorType(const std::vector<T>& value)
    9494            {
    9595                this->value_ = T();
     
    9797            }
    9898
    99             inline const std::string& getName() const
     99            const std::string& getName() const
    100100                { return this->varname_; }
    101             inline bool isVector() const
     101            bool isVector() const
    102102                { return this->bIsVector_; }
    103             inline unsigned int getVectorSize() const
     103            unsigned int getVectorSize() const
    104104                { return this->valueVector_.size(); }
    105105
     
    119119
    120120            /** @brief Converts the config-value to a string. @return The string */
    121             inline std::string toString() const
     121            std::string toString() const
    122122                { return this->value_.toString(); }
    123123            /** @brief Returns the typename of the assigned config-value. @return The typename */
    124             inline std::string getTypename() const
     124            std::string getTypename() const
    125125                { return this->value_.getTypename(); }
    126126
Note: See TracChangeset for help on using the changeset viewer.