| 52 | } |
| 53 | |
| 54 | Value ConfigObject::GetExtension(const String& key) |
| 55 | { |
| 56 | Dictionary::Ptr extensions = GetExtensions(); |
| 57 | |
| 58 | if (!extensions) |
| 59 | return Empty; |
| 60 | |
| 61 | return extensions->Get(key); |
| 62 | } |
| 63 | |
| 64 | void ConfigObject::ClearExtension(const String& key) |
| 65 | { |
no test coverage detected