//===== // 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 __bbcreaVtkCutter_h_INCLUDED__ #define __bbcreaVtkCutter_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkPolyData.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT Cutter : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(Cutter,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(In,vtkPolyData*); BBTK_DECLARE_OUTPUT(Out,vtkPolyData*); BBTK_PROCESS(Process); void Process(); //===== // 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(Cutter,bbtk::AtomicBlackBox); BBTK_NAME("Cutter"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("vtkCutter"); BBTK_CATEGORY("empty"); BBTK_INPUT(Cutter,In,"vtkPolyData input",vtkPolyData*,""); BBTK_OUTPUT(Cutter,Out,"vtkPolyData output",vtkPolyData*,""); BBTK_END_DESCRIBE_BLACK_BOX(Cutter); //===== // 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 bbcreaVtk #endif // __bbcreaVtkCutter_h_INCLUDED__