vtkXMLFileOutputWindow.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00050 #ifndef __vtkXMLFileOutputWindow_h
00051 #define __vtkXMLFileOutputWindow_h
00052
00053 #include "vtkFileOutputWindow.h"
00054
00055
00056 class VTK_COMMON_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow
00057 {
00058 public:
00059 vtkTypeRevisionMacro(vtkXMLFileOutputWindow, vtkFileOutputWindow);
00060
00061 static vtkXMLFileOutputWindow* New();
00062
00064
00067 virtual void DisplayText(const char*);
00068 virtual void DisplayErrorText(const char*);
00069 virtual void DisplayWarningText(const char*);
00070 virtual void DisplayGenericWarningText(const char*);
00071 virtual void DisplayDebugText(const char*);
00073
00075 virtual void DisplayTag(const char*);
00076
00077
00078 protected:
00079 vtkXMLFileOutputWindow() {};
00080 virtual ~vtkXMLFileOutputWindow() {};
00081
00082 void Initialize();
00083 virtual void DisplayXML(const char*, const char*);
00084 private:
00085 vtkXMLFileOutputWindow(const vtkXMLFileOutputWindow&);
00086 void operator=(const vtkXMLFileOutputWindow&);
00087 };
00088
00089
00090
00091 #endif