//===== // 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 __bbcreaVtkVectorPolyDataReader_h_INCLUDED__ #define __bbcreaVtkVectorPolyDataReader_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include namespace bbcreaVtk { class bbcreaVtk_EXPORT VectorPolyDataReader : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(VectorPolyDataReader,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(DirName,std::string); BBTK_DECLARE_INPUT(FileNameVector,std::vector); BBTK_DECLARE_OUTPUT(PolyDataVector,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(VectorPolyDataReader,bbtk::AtomicBlackBox); BBTK_NAME("VectorPolyDataReader"); BBTK_AUTHOR("Info-Dev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(VectorPolyDataReader,DirName,"DirectoryName",std::string,""); BBTK_INPUT(VectorPolyDataReader,FileNameVector,"String vector with the name of the .vtk files",std::vector,""); BBTK_OUTPUT(VectorPolyDataReader,PolyDataVector,"Std::vector with PolyData(s)",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(VectorPolyDataReader); //===== // 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 // __bbcreaVtkVectorPolyDataReader_h_INCLUDED__