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 =========================================================================*/
37 #ifndef vtkXMLFileOutputWindow_h
38 #define vtkXMLFileOutputWindow_h
39 
40 #include "vtkCommonCoreModule.h" // For export macro
41 #include "vtkFileOutputWindow.h"
42 
43 
44 class VTKCOMMONCORE_EXPORT vtkXMLFileOutputWindow : public vtkFileOutputWindow
45 {
46 public:
48 
49  static vtkXMLFileOutputWindow* New();
50 
52 
57  void DisplayText(const char*) VTK_OVERRIDE;
58  void DisplayErrorText(const char*) VTK_OVERRIDE;
59  void DisplayWarningText(const char*) VTK_OVERRIDE;
60  void DisplayGenericWarningText(const char*) VTK_OVERRIDE;
61  void DisplayDebugText(const char*) VTK_OVERRIDE;
63 
67  virtual void DisplayTag(const char*);
68 
69 protected:
71  ~vtkXMLFileOutputWindow() VTK_OVERRIDE {}
72 
73  void Initialize();
74  virtual void DisplayXML(const char*, const char*);
75 
76 private:
77  vtkXMLFileOutputWindow(const vtkXMLFileOutputWindow&) VTK_DELETE_FUNCTION;
78  void operator=(const vtkXMLFileOutputWindow&) VTK_DELETE_FUNCTION;
79 };
80 
81 
82 
83 #endif
84 // 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.