//===== // 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) //===== #ifndef __bbvtkProbeFilter_h_INCLUDED__ #define __bbvtkProbeFilter_h_INCLUDED__ #include "bbvtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkDataObject.h" #include "vtkDataSet.h" #include "vtkProbeFilter.h" namespace bbvtk { class bbvtk_EXPORT ProbeFilter : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(ProbeFilter,bbtk::AtomicBlackBox); //===== // 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) //===== BBTK_DECLARE_INPUT(Input,vtkDataObject*); BBTK_DECLARE_INPUT(Source,vtkDataObject*); BBTK_DECLARE_OUTPUT(Out,vtkDataSet*); BBTK_PROCESS(Process); void Process(); private: vtkProbeFilter *_probefilter; //===== // 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) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(ProbeFilter,bbtk::AtomicBlackBox); BBTK_NAME("ProbeFilter"); BBTK_AUTHOR("ED at InfoDev Creatis"); BBTK_DESCRIPTION("vtkProbeFilter"); BBTK_CATEGORY("empty"); BBTK_INPUT(ProbeFilter,Input,"Input (example:vtkPolyData The BBTK_adaptor vtkPolyData to vtkDataObject exists.)",vtkDataObject*,""); BBTK_INPUT(ProbeFilter,Source,"Source (example:vtkPolyData The BBTK_adaptor vtkPolyData to vtkDataObject exists.)",vtkDataObject*,""); BBTK_OUTPUT(ProbeFilter,Out,"First output",vtkDataSet*,""); BBTK_END_DESCRIBE_BLACK_BOX(ProbeFilter); //===== // 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) //===== } // EO namespace bbvtk #endif // __bbvtkProbeFilter_h_INCLUDED__