17 # define RETO_VERSION_MAJOR 0 20 # define RETO_VERSION_MINOR 3 23 # define RETO_VERSION_PATCH 7 26 # define RETO_VERSION_REVISION 0x03fc1cf 29 # define RETO_VERSION_ABI 5ull 32 # define RETO_VERSION_STRING \ 36 # define RETO_REV_STRING \ 40 # define RETO_VERSION_GT( MAJOR, MINOR, PATCH ) \ 41 ( (RETO_VERSION_MAJOR>MAJOR) || \ 42 (RETO_VERSION_MAJOR==MAJOR && (RETO_VERSION_MINOR>MINOR || \ 43 (RETO_VERSION_MINOR==MINOR && RETO_VERSION_PATCH>PATCH)))) 46 # define RETO_VERSION_GE( MAJOR, MINOR, PATCH ) \ 47 ( (RETO_VERSION_MAJOR>MAJOR) || \ 48 (RETO_VERSION_MAJOR==MAJOR && (RETO_VERSION_MINOR>MINOR || \ 49 (RETO_VERSION_MINOR==MINOR && RETO_VERSION_PATCH>=PATCH)))) 52 # define RETO_VERSION_LT( MAJOR, MINOR, PATCH ) \ 53 ( (RETO_VERSION_MAJOR<MAJOR) || \ 54 (RETO_VERSION_MAJOR==MAJOR && (RETO_VERSION_MINOR<MINOR || \ 55 (RETO_VERSION_MINOR==MINOR && RETO_VERSION_PATCH<PATCH)))) 58 # define RETO_VERSION_LE( MAJOR, MINOR, PATCH ) \ 59 ( (RETO_VERSION_MAJOR<MAJOR) || \ 60 (RETO_VERSION_MAJOR==MAJOR && (RETO_VERSION_MINOR<MINOR || \ 61 (RETO_VERSION_MINOR==MINOR && RETO_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": "03fc1cf" Defines export visibility macros for library ReTo.
#define RETO_VERSION_MAJOR
The current major version.
Information about the current ReTo version.
static bool check()
Runtime check for ABI compatibility.
static std::string getSchema()
static std::string toJSON()
#define RETO_VERSION_MINOR
The current minor version.