| 167 | |
| 168 | |
| 169 | Int64 AbstractConfiguration::getInt64(const std::string& key) const |
| 170 | { |
| 171 | Mutex::ScopedLock lock(_mutex); |
| 172 | |
| 173 | std::string value; |
| 174 | if (getRaw(key, value)) |
| 175 | return parseInt64(internalExpand(value)); |
| 176 | else |
| 177 | throw NotFoundException(key); |
| 178 | } |
| 179 | |
| 180 | |
| 181 | Int64 AbstractConfiguration::getInt64(const std::string& key, Int64 defaultValue) const |
no outgoing calls
no test coverage detected