//===== // 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 __bbcreaVtkTransformVector_h_INCLUDED__ #define __bbcreaVtkTransformVector_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkLinearTransform.h" namespace bbcreaVtk { class bbcreaVtk_EXPORT TransformVector : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(TransformVector,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(InX,std::vector); BBTK_DECLARE_INPUT(InY,std::vector); BBTK_DECLARE_INPUT(InZ,std::vector); BBTK_DECLARE_INPUT(Transform,vtkLinearTransform*); BBTK_DECLARE_OUTPUT(OutX,std::vector); BBTK_DECLARE_OUTPUT(OutY,std::vector); BBTK_DECLARE_OUTPUT(OutZ,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(TransformVector,bbtk::AtomicBlackBox); BBTK_NAME("TransformVector"); BBTK_AUTHOR("Info-Dev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(TransformVector,InX,"Xvector input",std::vector,""); BBTK_INPUT(TransformVector,InY,"Yvector input",std::vector,""); BBTK_INPUT(TransformVector,InZ,"Zvector input",std::vector,""); BBTK_INPUT(TransformVector,Transform,"Transform",vtkLinearTransform*,""); BBTK_OUTPUT(TransformVector,OutX,"Xvector output",std::vector,""); BBTK_OUTPUT(TransformVector,OutY,"Xvector output",std::vector,""); BBTK_OUTPUT(TransformVector,OutZ,"Xvector output",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(TransformVector); //===== // 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 // __bbcreaVtkTransformVector_h_INCLUDED__