dox/Common/vtkXMLFileOutputWindow.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00039
#ifndef __vtkXMLFileOutputWindow_h
00040
#define __vtkXMLFileOutputWindow_h
00041
00042
#include "vtkFileOutputWindow.h"
00043
00044
00045 class VTK_COMMON_EXPORT vtkXMLFileOutputWindow :
public vtkFileOutputWindow
00046 {
00047
public:
00048 vtkTypeRevisionMacro(vtkXMLFileOutputWindow,
vtkFileOutputWindow);
00049
00050
static vtkXMLFileOutputWindow*
New();
00051
00053
00056
virtual void DisplayText(
const char*);
00057
virtual void DisplayErrorText(
const char*);
00058
virtual void DisplayWarningText(
const char*);
00059
virtual void DisplayGenericWarningText(
const char*);
00060
virtual void DisplayDebugText(
const char*);
00062
00064
virtual void DisplayTag(
const char*);
00065
00066
00067
protected:
00068 vtkXMLFileOutputWindow() {};
00069 virtual ~vtkXMLFileOutputWindow() {};
00070
00071
void Initialize();
00072
virtual void DisplayXML(
const char*,
const char*);
00073
private:
00074 vtkXMLFileOutputWindow(
const vtkXMLFileOutputWindow&);
00075
void operator=(
const vtkXMLFileOutputWindow&);
00076 };
00077
00078
00079
00080
#endif