Changeset 1321 for code/branches/console/src/core/ConfigValueContainer.h
- Timestamp:
- May 19, 2008, 2:20:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/ConfigValueContainer.h
r1313 r1321 100 100 const std::string& getDescription() const; 101 101 102 bool add(const std::string& input); 102 bool set(const MultiTypeMath& input); 103 bool tset(const MultiTypeMath& input); 104 105 bool set(unsigned int index, const MultiTypeMath& input); 106 bool tset(unsigned int index, const MultiTypeMath& input); 107 bool add(const MultiTypeMath& input); 103 108 bool remove(unsigned int index); 104 bool set(const std::string& input); 105 bool tset(const std::string& input); 109 106 110 bool reset(); 107 111 void update(); 108 109 bool parse(const std::string& input);110 bool parse(const std::string& input, const MultiTypeMath& defvalue);111 112 bool set(unsigned int index, const std::string& input);113 bool tset(unsigned int index, const std::string& input);114 bool parse(unsigned int index, const std::string& input);115 bool parse(unsigned int index, const std::string& input, const MultiTypeMath& defvalue);116 112 117 113 /** @brief Converts the config-value to a string. @return The string */ … … 123 119 124 120 private: 121 bool callFunctionWithIndex(bool (ConfigValueContainer::* function) (unsigned int, const MultiTypeMath&), const std::string& input); 122 125 123 bool bIsVector_; //!< True if the container contains a std::vector 126 124
Note: See TracChangeset
for help on using the changeset viewer.