VTK
vtkGDAL.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGDAL.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 =========================================================================*/
20 #ifndef vtkGDAL_h
21 #define vtkGDAL_h
22 
23 #include "vtkObject.h"
24 #include <vtkIOGDALModule.h> // For export macro
25 
27 
28 class VTKIOGDAL_EXPORT vtkGDAL : public vtkObject
29 {
30  public:
31  // Key used to put GDAL map projection string in the output information
32  // by readers.
33  static vtkInformationStringKey* MAP_PROJECTION();
34 
35  protected:
36 
37  private:
38  vtkGDAL(); // Static class
39  ~vtkGDAL();
40  vtkGDAL(const vtkGDAL&); // Not implemented.
41  void operator=(const vtkGDAL&); // Not implemented
42 };
43 
44 #endif // vtkGDAL_h
45 // VTK-HeaderTest-Exclude: vtkGDAL.h
abstract base class for most VTK objects
Definition: vtkObject.h:61
Key for string values in vtkInformation.
Shared data for GDAL classes.
Definition: vtkGDAL.h:28