| 150 | |
| 151 | |
| 152 | void StateDatabase::setBool(const std::string& name, const bool& value, |
| 153 | Permission accessLevel) { |
| 154 | set(name, value ? std::string("1") : std::string("0"), accessLevel); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | void StateDatabase::setFloat(const std::string& name, const float& value, |
no outgoing calls
no test coverage detected