Skip to content

Commit

Permalink
Doxy
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Nov 30, 2023
1 parent f80cf0b commit 35deb05
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ogr/ogr_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,14 @@ GIntBig CPL_DLL OGR_L_GetFeatureCount(OGRLayerH, int);
OGRErr CPL_DLL OGR_L_GetExtent(OGRLayerH, OGREnvelope *, int);
OGRErr CPL_DLL OGR_L_GetExtentEx(OGRLayerH, int iGeomField,
OGREnvelope *psExtent, int bForce);
/**
* @brief OGR_L_GetExtent3D computes the 3D extent of the layer.
* @param iGeomField 0-based index of the geometry field to consider.
* @param psExtent3D the computed 3D extent of the layer.
* @param bForce if TRUE, the extent will be computed even if all the
* layer features have to be fetched.
* @return OGRERR_NONE on success or an error code in case of failure.
*/
OGRErr CPL_DLL OGR_L_GetExtent3D(OGRLayerH, int iGeomField,
OGREnvelope3D *psExtent3D, int bForce);
int CPL_DLL OGR_L_TestCapability(OGRLayerH, const char *);
Expand Down

0 comments on commit 35deb05

Please sign in to comment.