Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
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 
16 #include <mitkIQuestionFactory.h>
17 #include <usModuleActivator.h>
18 #include <memory>
19 
20 namespace mitk::Forms
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>
33  void RegisterQuestion()
34  {
35  m_QuestionFactory->Register(new TQuestion);
36  }
37 
38  std::unique_ptr<IQuestionFactory> m_QuestionFactory;
39  };
40 }
41 
42 #endif
void Load(us::ModuleContext *context) override
void Unload(us::ModuleContext *context) override