NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkGeneralSegmentorActivator.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 __niftkGeneralSegmentorActivator_h
16 #define __niftkGeneralSegmentorActivator_h
17 
18 #include <ctkPluginActivator.h>
19 
20 namespace niftk
21 {
22 
29  public QObject, public ctkPluginActivator
30 {
31  Q_OBJECT
32  Q_INTERFACES(ctkPluginActivator)
33 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
34  Q_PLUGIN_METADATA(IID "uk_ac_ucl_cmic_midasgeneralsegmentor")
35 #endif
36 
37 public:
38 
39  void start(ctkPluginContext* context);
40  void stop(ctkPluginContext* context);
41 
42 };
43 
44 }
45 
46 #endif
CTK Plugin Activator class for niftkGeneralSegmentorView.
Definition: niftkGeneralSegmentorActivator.h:28
void stop(ctkPluginContext *context)
Definition: niftkGeneralSegmentorActivator.cxx:35
Definition: niftkExceptionObject.h:21
void start(ctkPluginContext *context)
Definition: niftkGeneralSegmentorActivator.cxx:26