| 56 | } |
| 57 | |
| 58 | void mitk::CoreObjectFactory::UnRegisterExtraFactory(CoreObjectFactoryBase *factory) |
| 59 | { |
| 60 | MITK_DEBUG << "CoreObjectFactory: un-registering extra factory of type " << factory->GetNameOfClass(); |
| 61 | try |
| 62 | { |
| 63 | m_ExtraFactories.erase(factory); |
| 64 | } |
| 65 | catch ( const std::exception &e ) |
| 66 | { |
| 67 | MITK_ERROR << "Caught exception while unregistering: " << e.what(); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | mitk::CoreObjectFactory::Pointer mitk::CoreObjectFactory::GetInstance() |
| 72 | { |
no test coverage detected