//===== // 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 __bbvtkvtkImageDataToVtkDataObject_h_INCLUDED__ #define __bbvtkvtkImageDataToVtkDataObject_h_INCLUDED__ #include "bbvtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkDataObject.h" #include "vtkImageData.h" namespace bbvtk { class bbvtk_EXPORT vtkImageDataToVtkDataObject : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(vtkImageDataToVtkDataObject,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,vtkImageData*); BBTK_DECLARE_OUTPUT(Out,vtkDataObject*); 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(vtkImageDataToVtkDataObject,bbtk::AtomicBlackBox); BBTK_NAME("vtkImageDataToVtkDataObject"); BBTK_AUTHOR("Davila at InfoDev Creatis"); BBTK_DESCRIPTION("vtk adaptor (vtk Object herency)"); BBTK_CATEGORY("empty"); BBTK_DEFAULT_ADAPTOR(); BBTK_INPUT(vtkImageDataToVtkDataObject,In,"the vtkobject vtkImageData*",vtkImageData*,""); BBTK_OUTPUT(vtkImageDataToVtkDataObject,Out,"the vtk object vtkDataObject*",vtkDataObject*,""); BBTK_END_DESCRIBE_BLACK_BOX(vtkImageDataToVtkDataObject); //===== // 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 // __bbvtkvtkImageDataToVtkDataObject_h_INCLUDED__