//===== // 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 __bbcreaVtkImage3DVector_h_INCLUDED__ #define __bbcreaVtkImage3DVector_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" namespace bbcreaVtk { class bbcreaVtk_EXPORT Image3DVector : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(Image3DVector,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,std::vector); BBTK_DECLARE_INPUT (NbImagesPerRow,int); BBTK_DECLARE_INPUT (NbImagesInMosaic,int); BBTK_DECLARE_OUTPUT(Out,std::vector); 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(Image3DVector,bbtk::AtomicBlackBox); BBTK_NAME("Image3DVector"); BBTK_AUTHOR("Carlos torres"); BBTK_DESCRIPTION("carlos.torres@insa-lyon.fr -"); BBTK_CATEGORY("empty"); BBTK_INPUT(Image3DVector,In,"2D image list",std::vector,""); BBTK_INPUT(Image3DVector,NbImagesPerRow,"Nb of Images Per Row ",int,""); BBTK_INPUT(Image3DVector,NbImagesInMosaic,"Nb of Images In Mosaic ",int,""); BBTK_OUTPUT(Image3DVector,Out,"3D image Vector",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(Image3DVector); //===== // 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 // __bbcreaVtkImage3DVector_h_INCLUDED__