8 #ifndef NLGEOMETRY_VERSION_H 9 #define NLGEOMETRY_VERSION_H 17 # define NLGEOMETRY_VERSION_MAJOR 0 20 # define NLGEOMETRY_VERSION_MINOR 3 23 # define NLGEOMETRY_VERSION_PATCH 5 26 # define NLGEOMETRY_VERSION_REVISION 0x6af81ca 29 # define NLGEOMETRY_VERSION_ABI 4ull 32 # define NLGEOMETRY_VERSION_STRING \ 36 # define NLGEOMETRY_REV_STRING \ 40 # define NLGEOMETRY_VERSION_GT( MAJOR, MINOR, PATCH ) \ 41 ( (NLGEOMETRY_VERSION_MAJOR>MAJOR) || \ 42 (NLGEOMETRY_VERSION_MAJOR==MAJOR && (NLGEOMETRY_VERSION_MINOR>MINOR || \ 43 (NLGEOMETRY_VERSION_MINOR==MINOR && NLGEOMETRY_VERSION_PATCH>PATCH)))) 46 # define NLGEOMETRY_VERSION_GE( MAJOR, MINOR, PATCH ) \ 47 ( (NLGEOMETRY_VERSION_MAJOR>MAJOR) || \ 48 (NLGEOMETRY_VERSION_MAJOR==MAJOR && (NLGEOMETRY_VERSION_MINOR>MINOR || \ 49 (NLGEOMETRY_VERSION_MINOR==MINOR && NLGEOMETRY_VERSION_PATCH>=PATCH)))) 52 # define NLGEOMETRY_VERSION_LT( MAJOR, MINOR, PATCH ) \ 53 ( (NLGEOMETRY_VERSION_MAJOR<MAJOR) || \ 54 (NLGEOMETRY_VERSION_MAJOR==MAJOR && (NLGEOMETRY_VERSION_MINOR<MINOR || \ 55 (NLGEOMETRY_VERSION_MINOR==MINOR && NLGEOMETRY_VERSION_PATCH<PATCH)))) 58 # define NLGEOMETRY_VERSION_LE( MAJOR, MINOR, PATCH ) \ 59 ( (NLGEOMETRY_VERSION_MAJOR<MAJOR) || \ 60 (NLGEOMETRY_VERSION_MAJOR==MAJOR && (NLGEOMETRY_VERSION_MINOR<MINOR || \ 61 (NLGEOMETRY_VERSION_MINOR==MINOR && NLGEOMETRY_VERSION_PATCH<=PATCH)))) 68 static int getMajor();
71 static int getMinor();
74 static int getPatch();
77 static std::string getString();
80 static unsigned long long getRevision();
86 static std::string getRevString();
109 "description": "Version information of the running application", 111 "major": { "type": "integer" }, 112 "minor": { "type": "integer" }, 113 "patch": { "type": "integer" }, 114 "abi": { "type": "integer" }, 115 "revision": { "type": "string" } 130 "revision": "6af81ca" #define NLGEOMETRY_VERSION_MAJOR
The current major version.
Defines export visibility macros for library nlgeometry.
static bool check()
Runtime check for ABI compatibility.
Copyright (c) 2015-2017 VG-Lab/URJC.
#define NLGEOMETRY_VERSION_MINOR
The current minor version.
static std::string toJSON()
Information about the current nlgeometry version.
static std::string getSchema()