VTK  9.3.20240424
vtkGDAL.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
12#ifndef vtkGDAL_h
13#define vtkGDAL_h
14
15#include "vtkObject.h"
16#include <vtkIOGDALModule.h> // For export macro
17
18VTK_ABI_NAMESPACE_BEGIN
21
22class VTKIOGDAL_EXPORT vtkGDAL : public vtkObject
23{
24public:
25 vtkTypeMacro(vtkGDAL, vtkObject);
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27 // Key used to put GDAL map projection string in the output information
28 // by readers.
31
32protected:
33private:
34 vtkGDAL(); // Static class
35 ~vtkGDAL() override;
36 vtkGDAL(const vtkGDAL&) = delete;
37 void operator=(const vtkGDAL&) = delete;
38};
39
40VTK_ABI_NAMESPACE_END
41#endif // vtkGDAL_h
Shared data for GDAL classes.
Definition vtkGDAL.h:23
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkInformationStringKey * MAP_PROJECTION()
static vtkInformationIntegerVectorKey * FLIP_AXIS()
a simple class to control print indentation
Definition vtkIndent.h:108
Key for string values in vtkInformation.
abstract base class for most VTK objects
Definition vtkObject.h:162