| 27 | |
| 28 | |
| 29 | bool Parameters::getString(const char* key, std::string& value) const { |
| 30 | const char* temp = getRaw(key); |
| 31 | if (!temp) |
| 32 | return false; |
| 33 | value.assign(temp); |
| 34 | return true; |
| 35 | } |
| 36 | |
| 37 | |
| 38 | bool Parameters::getBoolean(const char* key, bool& value) const { |
no outgoing calls