VTK  9.0.1
vtkAndroidOutputWindow.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAndroidOutputWindow.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 =========================================================================*/
31 #ifndef vtkAndroidOutputWindow_h
32 #define vtkAndroidOutputWindow_h
33 
34 #include "vtkCommonCoreModule.h" // For export macro
35 #include "vtkOutputWindow.h"
36 
37 class VTKCOMMONCORE_EXPORT vtkAndroidOutputWindow : public vtkOutputWindow
38 {
39 public:
40  // Methods from vtkObject
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
47  static vtkAndroidOutputWindow* New();
48 
50 
53  void DisplayText(const char*) override;
54  virtual void DisplayErrorText(const char*);
55  virtual void DisplayWarningText(const char*);
56  virtual void DisplayGenericWarningText(const char*);
58 
59  virtual void DisplayDebugText(const char*);
60 
61 protected:
63  ~vtkAndroidOutputWindow() override;
64 
65 private:
67  void operator=(const vtkAndroidOutputWindow&) = delete;
68 };
69 
70 #endif
vtkOutputWindow.h
vtkOutputWindow::New
static vtkOutputWindow * New()
Creates a new instance of vtkOutputWindow.
vtkOutputWindow::DisplayDebugText
virtual void DisplayDebugText(const char *)
vtkOutputWindow
base class for writing debug output to a console
Definition: vtkOutputWindow.h:50
vtkAndroidOutputWindow
Win32 Specific output window class.
Definition: vtkAndroidOutputWindow.h:37
vtkOutputWindow::DisplayText
virtual void DisplayText(const char *)
Display the text.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkOutputWindow::DisplayGenericWarningText
virtual void DisplayGenericWarningText(const char *)
vtkOutputWindow::DisplayWarningText
virtual void DisplayWarningText(const char *)
vtkOutputWindow::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Print ObjectFactor to stream.
vtkOutputWindow::DisplayErrorText
virtual void DisplayErrorText(const char *)