|
| template<class Type > |
| void | set (std::map< std::string, Setting *> &settingMap, const std::string &key, Type value, bool &isDirty, bool controllerWritable, bool globalReadable, bool controllerReadable) |
| |
| template<> |
| void | set< std::string > (std::map< std::string, Setting *> &settingMap, const std::string &key, std::string value, bool &isDirty, bool controllerWritable, bool globalReadable, bool controllerReadable) |
| |
| template<class Type > |
| Type | value (std::map< std::string, Setting *> &settingMap, const std::string &key, Type defaultValue, bool &isDirty, bool controllerWritable, bool globalReadable, bool controllerReadable) |
| |
| template<> |
| std::string | value< std::string > (std::map< std::string, Setting *> &settingMap, const std::string &key, std::string defaultValue, bool &isDirty, bool controllerWritable, bool globalReadable, bool controllerReadable) |
| |
| template<class Type > |
| bool | tryGet (std::map< std::string, Setting *> &settingMap, const std::string &key, Type &value) |
| |
| template<> |
| bool | tryGet< std::string > (std::map< std::string, Setting *> &settingMap, const std::string &key, std::string &value) |
| |