NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
mitkPointSetCropperEventInterface.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 PointSetCropperEventInterface_h
16 #define PointSetCropperEventInterface_h
17 
18 #include "itkObject.h"
19 
20 #include "mitkOperation.h"
21 #include "mitkOperationActor.h"
22 
24 
25 namespace mitk
26 {
27  class PointSetCropperEventInterface : public itk::Object, public OperationActor
28  {
29 
30  public:
31 
34 
35  void SetPointSetCropper( QmitkPointSetCropper* PointSetCropper )
36  {
37  m_PointSetCropper = PointSetCropper;
38  }
39 
40  virtual void ExecuteOperation(mitk::Operation* op) override;
41 
42  private:
43 
44  QmitkPointSetCropper* m_PointSetCropper;
45 
46  };
47 }
48 
49 #endif // PointSetCropperEventInterface_h
Definition: ReceptorMemberCommandTest.cxx:25
Definition: mitkPointSetCropperEventInterface.h:27
Highly Experimental.
Definition: QmitkPointSetCropper.h:40
void SetPointSetCropper(QmitkPointSetCropper *PointSetCropper)
Definition: mitkPointSetCropperEventInterface.h:35
virtual void ExecuteOperation(mitk::Operation *op) override