NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkCoordinateAxesDataOpUpdate.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 niftkCoordinateAxesDataOpUpdate_h
16 #define niftkCoordinateAxesDataOpUpdate_h
17 
18 #include "niftkCoreExports.h"
19 
20 #include <mitkOperation.h>
21 #include <mitkOperationActor.h>
22 
23 #include <vtkSmartPointer.h>
24 #include <vtkMatrix4x4.h>
25 
26 namespace niftk
27 {
28 
29 class NIFTKCORE_EXPORT CoordinateAxesDataOpUpdate : public mitk::Operation
30 {
31 public:
33  mitk::OperationType type,
34  const vtkMatrix4x4& matrix,
35  const std::string &nodeName
36  );
37 
39 
40  vtkSmartPointer<vtkMatrix4x4> GetMatrix() const;
41 
42  std::string GetNodeName() const;
43 
44 private:
45  vtkSmartPointer<vtkMatrix4x4> m_Matrix;
46  std::string m_NodeName;
47 };
48 
49 }
50 
51 #endif
GLuint GLuint GLsizei GLenum type
Definition: glew.h:1237
Definition: niftkCoordinateAxesDataOpUpdate.h:29
GLuint GLenum matrix
Definition: glew.h:12775
Definition: niftkExceptionObject.h:21
GLsizei const GLcharARB ** string
Definition: glew.h:5194