ParaView
vtkPVOpenGLExtensionsInformation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVOpenGLExtensionsInformation.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
25 #ifndef vtkPVOpenGLExtensionsInformation_h
26 #define vtkPVOpenGLExtensionsInformation_h
27 
28 #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
29 #include "vtkPVInformation.h"
30 
31 class vtkPVOpenGLExtensionsInformationInternal;
32 
33 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVOpenGLExtensionsInformation
34  : public vtkPVInformation
35 {
36 public:
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
44  virtual void CopyFromObject(vtkObject*);
45 
49  bool ExtensionSupported(const char* ext);
50 
52 
55  virtual void CopyToStream(vtkClientServerStream*);
56  virtual void CopyFromStream(const vtkClientServerStream*);
58 
60 
63  virtual void AddInformation(vtkPVInformation*);
64 
65 protected:
69 
70 private:
72  void operator=(const vtkPVOpenGLExtensionsInformation&) VTK_DELETE_FUNCTION;
73 
74  vtkPVOpenGLExtensionsInformationInternal* Internal;
75 };
76 
77 #endif
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
Store messages for the interpreter.
Information object to obtain information about OpenGL extensions.
void PrintSelf(ostream &os, vtkIndent indent)
virtual void AddInformation(vtkPVInformation *)
Merge another information object.
virtual void CopyToStream(vtkClientServerStream *)=0
Manage a serialized version of the information.
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
Superclass for information objects.