]> Creatis software - FrontAlgorithms.git/blob - lib/fpa/VTK/SeedWidgetCorrector.h
426a75a2ca557bcface04cf73c8e4a9495a4d8a7
[FrontAlgorithms.git] / lib / fpa / VTK / SeedWidgetCorrector.h
1 #ifndef __FPA__VTK__SEEDWIDGETCORRECTOR__H__
2 #define __FPA__VTK__SEEDWIDGETCORRECTOR__H__
3
4 #include <fpa/FrontAlgorithms_Export.h>
5 #include <vtkCommand.h>
6
7 class vtkCellPicker;
8 class vtkSeedWidget;
9
10 namespace fpa
11 {
12   namespace VTK
13   {
14     /**
15      */
16     class FrontAlgorithms_EXPORT SeedWidgetCorrector
17       : public vtkCommand
18     {
19     public:
20       static SeedWidgetCorrector* New( );
21
22       void Configure( vtkCellPicker* picker );
23
24       virtual void Execute(
25         vtkObject* caller,
26         unsigned long eventId,
27         void* arguments
28         );
29
30     protected:
31       SeedWidgetCorrector( );
32       virtual ~SeedWidgetCorrector( );
33
34     protected:
35       vtkCellPicker* m_Picker;
36     };
37
38   } // ecapseman
39
40 } // ecapseman
41
42 #endif // __FPA__VTK__SEEDWIDGETCORRECTOR__H__
43
44 // eof - $RCSfile$