VTK
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 =========================================================================*/
28 #ifndef vtkAndroidOutputWindow_h
29 #define vtkAndroidOutputWindow_h
30 
31 #include "vtkCommonCoreModule.h" // For export macro
32 #include "vtkOutputWindow.h"
33 
34 
35 class VTKCOMMONCORE_EXPORT vtkAndroidOutputWindow : public vtkOutputWindow
36 {
37 public:
38 // Methods from vtkObject
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
46 
48 
51  void DisplayText(const char*) override;
52  virtual void DisplayErrorText(const char*);
53  virtual void DisplayWarningText(const char*);
54  virtual void DisplayGenericWarningText(const char*);
56 
57  virtual void DisplayDebugText(const char*);
58 
59 protected:
62 
63 private:
65  void operator=(const vtkAndroidOutputWindow&) = delete;
66 };
67 
68 
69 #endif
vtkAndroidOutputWindow::vtkAndroidOutputWindow
vtkAndroidOutputWindow()
vtkAndroidOutputWindow::DisplayErrorText
virtual void DisplayErrorText(const char *)
vtkAndroidOutputWindow::DisplayWarningText
virtual void DisplayWarningText(const char *)
vtkAndroidOutputWindow::New
static vtkAndroidOutputWindow * New()
Create a vtkAndroidOutputWindow.
vtkOutputWindow.h
vtkAndroidOutputWindow::DisplayText
void DisplayText(const char *) override
New lines are converted to carriage return new lines.
vtkAndroidOutputWindow::DisplayDebugText
virtual void DisplayDebugText(const char *)
vtkAndroidOutputWindow::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkOutputWindow
base class for writing debug output to a console
Definition: vtkOutputWindow.h:47
vtkAndroidOutputWindow
Win32 Specific output window class.
Definition: vtkAndroidOutputWindow.h:36
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkAndroidOutputWindow::~vtkAndroidOutputWindow
virtual ~vtkAndroidOutputWindow()
vtkAndroidOutputWindow::DisplayGenericWarningText
virtual void DisplayGenericWarningText(const char *)