GDAL
gdal_version.h
1 
2 /* -------------------------------------------------------------------- */
3 /* GDAL Version Information. */
4 /* -------------------------------------------------------------------- */
5 
6 #ifndef GDAL_VERSION_MAJOR
7 # define GDAL_VERSION_MAJOR 1
8 # define GDAL_VERSION_MINOR 9
9 # define GDAL_VERSION_REV 0
10 # define GDAL_VERSION_BUILD 0
11 #endif
12 
13 #ifndef GDAL_VERSION_NUM
14 # define GDAL_VERSION_NUM (GDAL_VERSION_MAJOR*1000+GDAL_VERSION_MINOR*100+GDAL_VERSION_REV*10+GDAL_VERSION_BUILD)
15 #endif
16 
17 #ifndef GDAL_RELEASE_DATE
18 # define GDAL_RELEASE_DATE 20111229
19 #endif
20 #ifndef GDAL_RELEASE_NAME
21 # define GDAL_RELEASE_NAME "1.9.0"
22 #endif

Generated for GDAL by doxygen 1.8.1.