You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
614 B
27 lines
614 B
// SPDX-License-Identifier: MIT
|
|
// Copyright 2024, Even Rouault <even.rouault at spatialys.com>
|
|
|
|
#ifndef OGRESRIJSONGEOMETRY_H_INCLUDED
|
|
#define OGRESRIJSONGEOMETRY_H_INCLUDED
|
|
|
|
/*! @cond Doxygen_Suppress */
|
|
|
|
#include "cpl_port.h"
|
|
#include "cpl_json_header.h"
|
|
|
|
#include "ogr_api.h"
|
|
|
|
class OGRGeometry;
|
|
class OGRPoint;
|
|
class OGRMultiPoint;
|
|
class OGRSpatialReference;
|
|
|
|
OGRGeometry CPL_DLL *OGRESRIJSONReadGeometry(json_object *poObj);
|
|
OGRSpatialReference CPL_DLL *
|
|
OGRESRIJSONReadSpatialReference(json_object *poObj);
|
|
OGRwkbGeometryType CPL_DLL OGRESRIJSONGetGeometryType(json_object *poObj);
|
|
|
|
/*! @endcond */
|
|
|
|
#endif
|