NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkPosnTool.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 niftkPosnTool_h
16 #define niftkPosnTool_h
17 
18 #include "niftkMIDASExports.h"
19 
20 #include "niftkTool.h"
21 
22 namespace niftk
23 {
24 
31 class NIFTKMIDAS_EXPORT PosnTool : public Tool
32 {
33 
34 public:
35  mitkClassMacro(PosnTool, Tool)
36  itkNewMacro(PosnTool)
37 
38  virtual const char* GetName() const;
39  virtual const char** GetXPM() const;
40 
41 protected:
42 
43  PosnTool(); // purposefully hidden
44  virtual ~PosnTool(); // purposefully hidden
45 
46 private:
47 
48 };
49 
50 }
51 
52 #endif
Dummy class, as the MIDAS posn tool, just enables you to change the position of the slices in 2 or 3 ...
Definition: niftkPosnTool.h:31
Base class for segmentor tools that need access to the list of seeds for the current reference data v...
Definition: niftkTool.h:61
Definition: niftkExceptionObject.h:21