| 68 | |
| 69 | |
| 70 | std::string AbstractConfiguration::getString(const std::string& key) const |
| 71 | { |
| 72 | Mutex::ScopedLock lock(_mutex); |
| 73 | |
| 74 | std::string value; |
| 75 | if (getRaw(key, value)) |
| 76 | return internalExpand(value); |
| 77 | else |
| 78 | throw NotFoundException(key); |
| 79 | } |
| 80 | |
| 81 | |
| 82 | std::string AbstractConfiguration::getString(const std::string& key, const std::string& defaultValue) const |
no outgoing calls
no test coverage detected