GDAL
gdal_version.h
00001 
00002 /* -------------------------------------------------------------------- */
00003 /*      GDAL Version Information.                                       */
00004 /* -------------------------------------------------------------------- */
00005 
00006 #ifndef GDAL_VERSION_MAJOR
00007 #  define GDAL_VERSION_MAJOR    1
00008 #  define GDAL_VERSION_MINOR    10
00009 #  define GDAL_VERSION_REV      1
00010 #  define GDAL_VERSION_BUILD    0
00011 #endif
00012 
00013 /* GDAL_COMPUTE_VERSION macro introduced in GDAL 1.10 */
00014 /* Must be used ONLY to compare with version numbers for GDAL >= 1.10 */
00015 #ifndef GDAL_COMPUTE_VERSION
00016 #define GDAL_COMPUTE_VERSION(maj,min,rev) ((maj)*1000000+(min)*10000+(rev)*100)
00017 #endif
00018 
00019 /* Note: the formula to compute GDAL_VERSION_NUM has changed in GDAL 1.10 */
00020 #ifndef GDAL_VERSION_NUM
00021 #  define GDAL_VERSION_NUM      (GDAL_COMPUTE_VERSION(GDAL_VERSION_MAJOR,GDAL_VERSION_MINOR,GDAL_VERSION_REV)+GDAL_VERSION_BUILD)
00022 #endif
00023 
00024 #ifndef GDAL_RELEASE_DATE
00025 #  define GDAL_RELEASE_DATE     20130826
00026 #endif
00027 #ifndef GDAL_RELEASE_NAME
00028 #  define GDAL_RELEASE_NAME     "1.10.1"
00029 #endif

Generated for GDAL by doxygen 1.7.6.1.