]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMaskPoint.h
#3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7
[bbtk.git] / packages / vtk / src / bbvtkMaskPoint.h
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #ifndef __bbvtkMaskPoint_h_INCLUDED__
5 #define __bbvtkMaskPoint_h_INCLUDED__
6 #include "bbvtk_EXPORT.h"
7 #include "bbtkAtomicBlackBox.h"
8 #include "iostream"
9
10 #include "vtkImageData.h"
11 #include "vtkMaskPoints.h"
12 #include "vtkPolyData.h"
13
14
15 namespace bbvtk
16 {
17
18 class bbvtk_EXPORT MaskPoint
19  : 
20    public bbtk::AtomicBlackBox
21 {
22   BBTK_BLACK_BOX_INTERFACE(MaskPoint,bbtk::AtomicBlackBox);
23 //===== 
24 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
25 //===== 
26   BBTK_DECLARE_INPUT(In,vtkImageData*);
27   BBTK_DECLARE_INPUT(Ratio,int);
28   BBTK_DECLARE_OUTPUT(Out,vtkPolyData*);
29   BBTK_PROCESS(Process);
30   void Process();
31
32   private:
33    vtkMaskPoints *maskpoints;
34
35 //===== 
36 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
37 //===== 
38 };
39
40 BBTK_BEGIN_DESCRIBE_BLACK_BOX(MaskPoint,bbtk::AtomicBlackBox);
41 BBTK_NAME("MaskPoint");
42 BBTK_AUTHOR("ED at InfoDev Creatis");
43 BBTK_DESCRIPTION("vtkMaskPoint. See Vectors/Tensors Examples");
44 BBTK_CATEGORY("empty");
45   BBTK_INPUT(MaskPoint,In,"vtkImageData",vtkImageData*,"");
46   BBTK_INPUT(MaskPoint,Ratio,"Ratio",int,"");
47   BBTK_OUTPUT(MaskPoint,Out,"vtkPolyData",vtkPolyData*,"");
48 BBTK_END_DESCRIBE_BLACK_BOX(MaskPoint);
49 //===== 
50 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
51 //===== 
52 }
53 // EO namespace bbvtk
54
55 #endif // __bbvtkMaskPoint_h_INCLUDED__
56