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