| 58 | } |
| 59 | |
| 60 | UIComponent::UIComponent(UIComponentFactory *factory, UIMediator *mediator) |
| 61 | : FeatureObject(factory), PersistentObject(), m_mediator(mediator) |
| 62 | { |
| 63 | assert(mediator != nullptr); |
| 64 | |
| 65 | m_mediator->registerUIComponent(this); |
| 66 | } |
| 67 | |
| 68 | UIComponent::~UIComponent() |
| 69 | { |
nothing calls this directly
no test coverage detected