VTK
vtkXMLFileOutputWindow.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLFileOutputWindow.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
40 #ifndef vtkXMLFileOutputWindow_h
41 #define vtkXMLFileOutputWindow_h
42 
43 #include "vtkCommonCoreModule.h" // For export macro
44 #include "vtkFileOutputWindow.h"
45 
46 
47 class VTKCOMMONCORE_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow
48 {
49 public:
51 
52  static vtkXMLFileOutputWindow* New();
53 
55 
60  void DisplayText(const char*) VTK_OVERRIDE;
61  void DisplayErrorText(const char*) VTK_OVERRIDE;
62  void DisplayWarningText(const char*) VTK_OVERRIDE;
63  void DisplayGenericWarningText(const char*) VTK_OVERRIDE;
64  void DisplayDebugText(const char*) VTK_OVERRIDE;
66 
70  virtual void DisplayTag(const char*);
71 
72 protected:
74  ~vtkXMLFileOutputWindow() VTK_OVERRIDE {}
75 
76  void Initialize();
77  virtual void DisplayXML(const char*, const char*);
78 
79 private:
80  vtkXMLFileOutputWindow(const vtkXMLFileOutputWindow&) VTK_DELETE_FUNCTION;
81  void operator=(const vtkXMLFileOutputWindow&) VTK_DELETE_FUNCTION;
82 };
83 
84 
85 
86 #endif
87 // VTK-HeaderTest-Exclude: vtkXMLFileOutputWindow.h
static vtkFileOutputWindow * New()
File Specific output window class.
XML File Specific output window class.
void DisplayText(const char *) override
Put the text into the log file.