| 191 | |
| 192 | |
| 193 | UInt64 AbstractConfiguration::getUInt64(const std::string& key) const |
| 194 | { |
| 195 | Mutex::ScopedLock lock(_mutex); |
| 196 | |
| 197 | std::string value; |
| 198 | if (getRaw(key, value)) |
| 199 | return parseUInt64(internalExpand(value)); |
| 200 | else |
| 201 | throw NotFoundException(key); |
| 202 | } |
| 203 | |
| 204 | |
| 205 | UInt64 AbstractConfiguration::getUInt64(const std::string& key, UInt64 defaultValue) const |
no outgoing calls
no test coverage detected