8 #ifndef NLRENDER_VERSION_H 9 #define NLRENDER_VERSION_H 17 # define NLRENDER_VERSION_MAJOR 0 20 # define NLRENDER_VERSION_MINOR 3 23 # define NLRENDER_VERSION_PATCH 5 26 # define NLRENDER_VERSION_REVISION 0x6af81ca 29 # define NLRENDER_VERSION_ABI 4ull 32 # define NLRENDER_VERSION_STRING \ 36 # define NLRENDER_REV_STRING \ 40 # define NLRENDER_VERSION_GT( MAJOR, MINOR, PATCH ) \ 41 ( (NLRENDER_VERSION_MAJOR>MAJOR) || \ 42 (NLRENDER_VERSION_MAJOR==MAJOR && (NLRENDER_VERSION_MINOR>MINOR || \ 43 (NLRENDER_VERSION_MINOR==MINOR && NLRENDER_VERSION_PATCH>PATCH)))) 46 # define NLRENDER_VERSION_GE( MAJOR, MINOR, PATCH ) \ 47 ( (NLRENDER_VERSION_MAJOR>MAJOR) || \ 48 (NLRENDER_VERSION_MAJOR==MAJOR && (NLRENDER_VERSION_MINOR>MINOR || \ 49 (NLRENDER_VERSION_MINOR==MINOR && NLRENDER_VERSION_PATCH>=PATCH)))) 52 # define NLRENDER_VERSION_LT( MAJOR, MINOR, PATCH ) \ 53 ( (NLRENDER_VERSION_MAJOR<MAJOR) || \ 54 (NLRENDER_VERSION_MAJOR==MAJOR && (NLRENDER_VERSION_MINOR<MINOR || \ 55 (NLRENDER_VERSION_MINOR==MINOR && NLRENDER_VERSION_PATCH<PATCH)))) 58 # define NLRENDER_VERSION_LE( MAJOR, MINOR, PATCH ) \ 59 ( (NLRENDER_VERSION_MAJOR<MAJOR) || \ 60 (NLRENDER_VERSION_MAJOR==MAJOR && (NLRENDER_VERSION_MINOR<MINOR || \ 61 (NLRENDER_VERSION_MINOR==MINOR && NLRENDER_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 NLRENDER_VERSION_MAJOR
The current major version.
static bool check()
Runtime check for ABI compatibility.
#define NLRENDER_VERSION_MINOR
The current minor version.
static std::string toJSON()
Defines export visibility macros for library nlrender.
static std::string getSchema()
Information about the current nlrender version.
Copyright (c) 2015-2017 VG-Lab/URJC.