| 46 | |
| 47 | |
| 48 | bool MapConfiguration::getRaw(const std::string& key, std::string& value) const |
| 49 | { |
| 50 | StringMap::const_iterator it = _map.find(key); |
| 51 | if (it != _map.end()) |
| 52 | { |
| 53 | value = it->second; |
| 54 | return true; |
| 55 | } |
| 56 | else return false; |
| 57 | } |
| 58 | |
| 59 | |
| 60 | void MapConfiguration::setRaw(const std::string& key, const std::string& value) |