NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkVTKExtraCommands.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 niftkVTKExtraCommands_h
16 #define niftkVTKExtraCommands_h
17 
18 #include <NifTKConfigure.h>
20 
21 #include <vtkCommand.h>
22 
27 class NIFTKVTK_WINEXPORT vtkExtraCommands : public vtkCommand
28 {
29 
30 public:
31 
33  {
34  BeforeCameraMoves = vtkCommand::UserEvent,
37  MouseMoved
38  };
39 
40 protected:
41 
43  virtual ~vtkExtraCommands() {}
44  vtkExtraCommands(const vtkExtraCommands& c) : vtkCommand(c) {}
45  void operator=(const vtkExtraCommands&) {}
46 
47 private:
48 
49 };
50 #endif
ExtraEventIds
Definition: niftkVTKExtraCommands.h:32
Pretty dumb class (TODO, maybe an alternative), to hold additional enums for creating command callbac...
Definition: niftkVTKExtraCommands.h:27
const GLfloat * c
Definition: glew.h:14144
void operator=(const vtkExtraCommands &)
Definition: niftkVTKExtraCommands.h:45
#define NIFTKVTK_WINEXPORT
Definition: niftkVTKWin32ExportHeader.h:28
vtkExtraCommands(const vtkExtraCommands &c)
Definition: niftkVTKExtraCommands.h:44
Definition: niftkVTKExtraCommands.h:36
Definition: niftkVTKExtraCommands.h:35
virtual ~vtkExtraCommands()
Definition: niftkVTKExtraCommands.h:43