/*========================================================================= Program: Visualization Toolkit Module: vtkGDAL.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /** * @class vtkGDAL * @brief Shared data for GDAL classes * */ #ifndef vtkGDAL_h #define vtkGDAL_h #include "vtkObject.h" #include // For export macro class vtkInformationStringKey; class VTKIOGDAL_EXPORT vtkGDAL : public vtkObject { public: // Key used to put GDAL map projection string in the output information // by readers. static vtkInformationStringKey* MAP_PROJECTION(); protected: private: vtkGDAL(); // Static class ~vtkGDAL() override; vtkGDAL(const vtkGDAL&) = delete; void operator=(const vtkGDAL&) = delete; }; #endif // vtkGDAL_h // VTK-HeaderTest-Exclude: vtkGDAL.h