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

vtkXMLFileOutputWindow.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkXMLFileOutputWindow.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00086   void operator=(const vtkXMLFileOutputWindow&);  // Not implemented.
00087 };
00088 
00089 
00090 
00091 #endif