Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Common/vtkXMLFileOutputWindow.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkXMLFileOutputWindow.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00043 #ifndef __vtkXMLFileOutputWindow_h 00044 #define __vtkXMLFileOutputWindow_h 00045 00046 #include "vtkFileOutputWindow.h" 00047 00048 00049 class VTK_COMMON_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow 00050 { 00051 public: 00052 vtkTypeRevisionMacro(vtkXMLFileOutputWindow, vtkFileOutputWindow); 00053 00054 static vtkXMLFileOutputWindow* New(); 00055 00057 00060 virtual void DisplayText(const char*); 00061 virtual void DisplayErrorText(const char*); 00062 virtual void DisplayWarningText(const char*); 00063 virtual void DisplayGenericWarningText(const char*); 00064 virtual void DisplayDebugText(const char*); 00066 00068 virtual void DisplayTag(const char*); 00069 00070 00071 protected: 00072 vtkXMLFileOutputWindow() {}; 00073 virtual ~vtkXMLFileOutputWindow() {}; 00074 00075 void Initialize(); 00076 virtual void DisplayXML(const char*, const char*); 00077 private: 00078 vtkXMLFileOutputWindow(const vtkXMLFileOutputWindow&); // Not implemented. 00079 void operator=(const vtkXMLFileOutputWindow&); // Not implemented. 00080 }; 00081 00082 00083 00084 #endif