VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkAndroidOutputWindow.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00030 #ifndef vtkAndroidOutputWindow_h 00031 #define vtkAndroidOutputWindow_h 00032 00033 #include "vtkCommonCoreModule.h" // For export macro 00034 #include "vtkOutputWindow.h" 00035 00036 00037 class VTKCOMMONCORE_EXPORT vtkAndroidOutputWindow : public vtkOutputWindow 00038 { 00039 public: 00040 // Methods from vtkObject 00041 vtkTypeMacro(vtkAndroidOutputWindow,vtkOutputWindow); 00042 void PrintSelf(ostream& os, vtkIndent indent); 00043 00045 static vtkAndroidOutputWindow* New(); 00046 00048 00049 virtual void DisplayText(const char*); 00050 virtual void DisplayErrorText(const char*); 00051 virtual void DisplayWarningText(const char*); 00052 virtual void DisplayGenericWarningText(const char*); 00054 00055 virtual void DisplayDebugText(const char*); 00056 00057 protected: 00058 vtkAndroidOutputWindow(); 00059 virtual ~vtkAndroidOutputWindow(); 00060 00061 private: 00062 vtkAndroidOutputWindow(const vtkAndroidOutputWindow&); // Not implemented. 00063 void operator=(const vtkAndroidOutputWindow&); // Not implemented. 00064 }; 00065 00066 00067 #endif