NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkCommonMIDASActivator.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef niftkCommonMIDASActivator_h
16 #define niftkCommonMIDASActivator_h
17 
18 #include <ctkPluginActivator.h>
19 
20 namespace niftk
21 {
22 
24  public QObject, public ctkPluginActivator
25 {
26  Q_OBJECT
27  Q_INTERFACES(ctkPluginActivator)
28 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
29  Q_PLUGIN_METADATA(IID "uk_ac_ucl_cmic_gui_qt_commonmidas")
30 #endif
31 
32 public:
33 
34  void start(ctkPluginContext* context) override;
35 
36  void stop(ctkPluginContext* context) override;
37 
38 };
39 
40 }
41 
42 #endif
void stop(ctkPluginContext *context) override
Definition: niftkCommonMIDASActivator.cxx:29
Definition: niftkCommonMIDASActivator.h:23
void start(ctkPluginContext *context) override
Definition: niftkCommonMIDASActivator.cxx:22
Definition: niftkExceptionObject.h:21