//===== // 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 __bbcreaVtkOutputWindow_h_INCLUDED__ #define __bbcreaVtkOutputWindow_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" #include "vtkOutputWindow.h" namespace bbcreaVtk { class vtkOutputWindowBBTK : public vtkOutputWindow { public: vtkOutputWindowBBTK(); static vtkOutputWindowBBTK* New() { return new vtkOutputWindowBBTK;} virtual void DisplayDebugText (const char *); virtual void DisplayText (const char *); virtual void DisplayErrorText (const char *); virtual void DisplayWarningText (const char *); virtual void DisplayGenericWarningText (const char *); protected: }; class bbcreaVtk_EXPORT OutputWindow : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(OutputWindow,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,double); // BBTK_DECLARE_OUTPUT(Out,double); BBTK_PROCESS(Process); void Process(); bool firsttime; //===== // 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(OutputWindow,bbtk::AtomicBlackBox); BBTK_NAME("OutputWindow"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); // BBTK_INPUT(OutputWindow,In,"First input",double,""); // BBTK_OUTPUT(OutputWindow,Out,"First output",double,""); BBTK_END_DESCRIBE_BLACK_BOX(OutputWindow); //===== // 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 // __bbcreaVtkOutputWindow_h_INCLUDED__