Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
I/src/mitkModuleActivator.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkModuleActivator_h
14 #define mitkModuleActivator_h
15 
17 #include <usModuleActivator.h>
18 #include <memory>
19 
20 namespace mitk::Forms::UI
21 {
23  {
24  public:
26  ~ModuleActivator() override;
27 
28  void Load(us::ModuleContext* context) override;
29  void Unload(us::ModuleContext* context) override;
30 
31  private:
32  template <class TQuestion, class TWidget>
33  void RegisterQuestionWidget()
34  {
35  auto question = std::make_unique<TQuestion>();
36  m_QuestionWidgetFactory->Register(question->GetType(), new TWidget);
37  }
38 
39  std::unique_ptr<IQuestionWidgetFactory> m_QuestionWidgetFactory;
40  };
41 }
42 
43 #endif
void Load(us::ModuleContext *context) override
void Unload(us::ModuleContext *context) override