VTK  9.2.6
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 class VTKCOMMONCORE_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow
47 {
48 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
52  static vtkXMLFileOutputWindow* New();
53 
55 
60  void DisplayText(const char*) override;
61  void DisplayErrorText(const char*) override;
62  void DisplayWarningText(const char*) override;
63  void DisplayGenericWarningText(const char*) override;
64  void DisplayDebugText(const char*) override;
66 
70  virtual void DisplayTag(const char*);
71 
72 protected:
73  vtkXMLFileOutputWindow() = default;
74  ~vtkXMLFileOutputWindow() override = default;
75 
76  void Initialize();
77  virtual void DisplayXML(const char*, const char*);
78 
79 private:
81  void operator=(const vtkXMLFileOutputWindow&) = delete;
82 };
83 
84 #endif
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.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void DisplayWarningText(const char *)
Display the text.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
XML File Specific output window class.
void DisplayText(const char *) override
Put the text into the log file.