NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
SurfaceExtractorPluginActivator.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 SurfaceExtractorPluginActivator_h
16 #define SurfaceExtractorPluginActivator_h
17 
18 #include <ctkPluginActivator.h>
19 
20 namespace mitk {
21 
28  public QObject, public ctkPluginActivator
29 {
30  Q_OBJECT
31  Q_INTERFACES(ctkPluginActivator)
32 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
33  Q_PLUGIN_METADATA(IID "uk_ac_ucl_cmic_surfaceextractor")
34 #endif
35 
36 public:
37 
38  void start(ctkPluginContext* context) override;
39  void stop(ctkPluginContext* context) override;
40 
41 }; // SurfaceExtractorPluginActivator
42 
43 }
44 
45 #endif // SurfaceExtractorPluginActivator_h
Definition: ReceptorMemberCommandTest.cxx:25
CTK Plugin Activator class for the Surface Extractor plugin.
Definition: SurfaceExtractorPluginActivator.h:27
void stop(ctkPluginContext *context) override
Definition: SurfaceExtractorPluginActivator.cxx:30
void start(ctkPluginContext *context) override
Definition: SurfaceExtractorPluginActivator.cxx:24