VTK  9.0.1
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 =========================================================================*/
37 #ifndef vtkXMLFileOutputWindow_h
38 #define vtkXMLFileOutputWindow_h
39 
40 #include "vtkCommonCoreModule.h" // For export macro
41 #include "vtkFileOutputWindow.h"
42 
43 class VTKCOMMONCORE_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow
44 {
45 public:
47 
48  static vtkXMLFileOutputWindow* New();
49 
51 
56  void DisplayText(const char*) override;
57  void DisplayErrorText(const char*) override;
58  void DisplayWarningText(const char*) override;
59  void DisplayGenericWarningText(const char*) override;
60  void DisplayDebugText(const char*) override;
62 
66  virtual void DisplayTag(const char*);
67 
68 protected:
71 
72  void Initialize();
73  virtual void DisplayXML(const char*, const char*);
74 
75 private:
77  void operator=(const vtkXMLFileOutputWindow&) = delete;
78 };
79 
80 #endif
81 // VTK-HeaderTest-Exclude: vtkXMLFileOutputWindow.h
virtual void DisplayDebugText(const char *)
Display the text.
static vtkFileOutputWindow * New()
virtual void DisplayGenericWarningText(const char *)
Display the text.
virtual void DisplayErrorText(const char *)
Display the text.
File Specific output window class.
virtual void DisplayWarningText(const char *)
Display the text.
XML File Specific output window class.
void DisplayText(const char *) override
Put the text into the log file.