25 #ifndef GEOMTOOLS_VERSION_H 26 #define GEOMTOOLS_VERSION_H 34 #define GEOMTOOLS_VERSION_MAJOR 5 37 #define GEOMTOOLS_VERSION_MINOR 2 40 #define GEOMTOOLS_VERSION_PATCH 0 43 #define GEOMTOOLS_ENCODE_VERSION(major, minor, patch) ( \ 49 #define GEOMTOOLS_VERSION GEOMTOOLS_ENCODE_VERSION( \ 50 GEOMTOOLS_VERSION_MAJOR, \ 51 GEOMTOOLS_VERSION_MINOR, \ 52 GEOMTOOLS_VERSION_PATCH) 55 #define GEOMTOOLS_LIB_VERSION "5.2.0" 58 #define GEOMTOOLS_IS_AT_LEAST(major,minor,patch) ( \ 59 GEOMTOOLS_VERSION >= \ 60 GEOMTOOLS_ENCODE_VERSION(major,minor,patch)) 81 static bool is_at_least(
int major,
int minor,
int patch);
84 static bool has_feature(
const std::string& feature);
89 #endif // GEOMTOOLS_VERSION_H