-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathgdal_vector_cpp.h
More file actions
31 lines (27 loc) · 829 Bytes
/
gdal_vector_cpp.h
File metadata and controls
31 lines (27 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/******************************************************************************
*
* Name: gdal_vector_cpp.h
* Project: GDAL Core
* Purpose: GDAL Core Vector C++ declarations.
* Author: Even Rouault, <even dot rouault at spatialys.com>
*
******************************************************************************
* Copyright (c) 2025 Even Rouault <even dot rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#ifndef GDAL_VECTOR_CPP_H_INCLUDED
#define GDAL_VECTOR_CPP_H_INCLUDED
/**
* \file gdal_vector_cpp.h
*
* C++ GDAL vector API entry points.
*
* \since GDAL 3.12
*/
#include "gdal_dataset.h"
#include "gdal_drivermanager.h"
#include "ogrsf_frmts.h"
#include "ogr_feature.h"
#include "ogr_geometry.h"
#endif