GDAL
ogrvrtgeometrytypes.h
1// SPDX-License-Identifier: MIT
2// Copyright 2024, Even Rouault <even.rouault at spatialys.com>
3
4#ifndef OGR_VRT_GEOMETRY_TYPES_H
5#define OGR_VRT_GEOMETRY_TYPES_H
6
7#include "ogr_api.h"
8
9#include <string>
10
11OGRwkbGeometryType CPL_DLL OGRVRTGetGeometryType(const char *pszGType,
12 int *pbError);
13std::string CPL_DLL
14OGRVRTGetSerializedGeometryType(OGRwkbGeometryType eGeomType);
15
16#endif
C API and defines for OGRFeature, OGRGeometry, and OGRDataSource related classes.
OGRwkbGeometryType
List of well known binary geometry types.
Definition: ogr_core.h:407