MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
mitkPluginActivator.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13
14#ifndef mitkPluginActivator_h
15#define mitkPluginActivator_h
16
17#include <ctkPluginActivator.h>
18
19namespace mitk {
20
21class PluginActivator :
22 public QObject, public ctkPluginActivator
23{
24 Q_OBJECT
25 Q_PLUGIN_METADATA(IID "org_mitk_gui_qt_igttracking")
26 Q_INTERFACES(ctkPluginActivator)
27
28public:
29
30 void start(ctkPluginContext* context) override;
31 void stop(ctkPluginContext* context) override;
32
33 static ctkPluginContext* GetContext();
34
35private:
36 static ctkPluginContext* m_Context;
37
38
39}; // PluginActivator
40
41}
42
43#endif
void start(ctkPluginContext *context) override
void stop(ctkPluginContext *context) override
static ctkPluginContext * GetContext()
IGT Exceptions.
org_mbi_gui_qt_usnavigation_Activator PluginActivator