//===== // 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 __bbwtobject3D_h_INCLUDED__ #define __bbwtobject3D_h_INCLUDED__ #include "bbwt_EXPORT.h" #include "bbtkWtBlackBox.h" #include "iostream" namespace bbwt { class bbwt_EXPORT Object3D : public bbtk::WtBlackBox { BBTK_BLACK_BOX_INTERFACE(Object3D,bbtk::WtBlackBox); //===== // 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(Image,std::string); BBTK_DECLARE_INPUT(Type,std::string); BBTK_DECLARE_OUTPUT(Type,std::string); BBTK_DECLARE_OUTPUT(Reference,std::string); BBTK_CREATE_WIDGET(CreateWidget); void CreateWidget(Wt::WContainerWidget*); BBTK_PROCESS(Process); void Process(); bool created; //===== // 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(Object3D,bbtk::WtBlackBox); BBTK_NAME("object3D"); BBTK_AUTHOR("johann.gonzalez@creatis.insa-lyon.fr"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(Object3D,Image,"Path of the image",std::string,""); BBTK_INPUT(Object3D,Type,"Type of image, it can be one of these [mesh,fibers,volume]",std::string,""); BBTK_OUTPUT(Object3D,Type,"Type of image",std::string,""); BBTK_OUTPUT(Object3D,Reference,"Reference of the WT container",std::string,""); BBTK_END_DESCRIBE_BLACK_BOX(Object3D); //===== // 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 bbwt #endif // __bbwtobject3D_h_INCLUDED__