| 155 | } |
| 156 | |
| 157 | void Registry::initialize() |
| 158 | { |
| 159 | m_objects.reset(new ObjectRegistry); |
| 160 | m_extensions.reset(new ExtensionRegistry); |
| 161 | m_namedStrings.reset(new NamedStringRegistry); |
| 162 | m_implementations.reset(new ImplementationRegistry); |
| 163 | |
| 164 | m_initialized = true; |
| 165 | } |
| 166 | |
| 167 | bool Registry::isInitialized() const |
| 168 | { |
no test coverage detected