Servus  1.5.1
C++ network oriented utilities including a zeroconf implementation
qt/version.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef SERVUSQT_VERSION_H
9 #define SERVUSQT_VERSION_H
10 
11 #include <servus/qt/api.h>
12 #include <string>
13 
14 namespace servusqt
15 {
17 # define SERVUSQT_VERSION_MAJOR 1
18 
20 # define SERVUSQT_VERSION_MINOR 5
21 
23 # define SERVUSQT_VERSION_PATCH 1
24 
26 # define SERVUSQT_VERSION_REVISION 0x6998512
27 
29 # define SERVUSQT_VERSION_ABI 5ull
30 
32 # define SERVUSQT_VERSION_GT( MAJOR, MINOR, PATCH ) \
33  ( (SERVUSQT_VERSION_MAJOR>MAJOR) || \
34  (SERVUSQT_VERSION_MAJOR==MAJOR && (SERVUSQT_VERSION_MINOR>MINOR || \
35  (SERVUSQT_VERSION_MINOR==MINOR && SERVUSQT_VERSION_PATCH>PATCH))))
36 
38 # define SERVUSQT_VERSION_GE( MAJOR, MINOR, PATCH ) \
39  ( (SERVUSQT_VERSION_MAJOR>MAJOR) || \
40  (SERVUSQT_VERSION_MAJOR==MAJOR && (SERVUSQT_VERSION_MINOR>MINOR || \
41  (SERVUSQT_VERSION_MINOR==MINOR && SERVUSQT_VERSION_PATCH>=PATCH))))
42 
44 # define SERVUSQT_VERSION_LT( MAJOR, MINOR, PATCH ) \
45  ( (SERVUSQT_VERSION_MAJOR<MAJOR) || \
46  (SERVUSQT_VERSION_MAJOR==MAJOR && (SERVUSQT_VERSION_MINOR<MINOR || \
47  (SERVUSQT_VERSION_MINOR==MINOR && SERVUSQT_VERSION_PATCH<PATCH))))
48 
50 # define SERVUSQT_VERSION_LE( MAJOR, MINOR, PATCH ) \
51  ( (SERVUSQT_VERSION_MAJOR<MAJOR) || \
52  (SERVUSQT_VERSION_MAJOR==MAJOR && (SERVUSQT_VERSION_MINOR<MINOR || \
53  (SERVUSQT_VERSION_MINOR==MINOR && SERVUSQT_VERSION_PATCH<=PATCH))))
54 
56 class SERVUSQT_API Version
57 {
58 public:
60  static int getMajor();
61 
63  static int getMinor();
64 
66  static int getPatch();
67 
69  static std::string getString();
70 
72  static unsigned long long getRevision();
73 
75  static int getABI();
76 
78  static std::string getRevString();
79 
88  static bool check()
89  {
90  return getMajor()==SERVUSQT_VERSION_MAJOR &&
91  getMinor()==SERVUSQT_VERSION_MINOR;
92  }
93 
95  static std::string getSchema()
96  {
97  return R"(
98  {
99  "title": "Version",
100  "type": "object",
101  "description": "Version information of the running application",
102  "properties": {
103  "major": { "type": "integer" },
104  "minor": { "type": "integer" },
105  "patch": { "type": "integer" },
106  "abi": { "type": "integer" },
107  "revision": { "type": "string" }
108  }
109  }
110  )";
111  }
112 
114  static std::string toJSON()
115  {
116  return R"(
117  {
118  "major": 1,
119  "minor": 5,
120  "patch": 1,
121  "abi": 5,
122  "revision": "6998512"
123  }
124  )";
125  }
126 };
127 
128 }
129 
130 #endif
#define SERVUSQT_VERSION_MAJOR
The current major version.
Definition: qt/version.h:17
static std::string getSchema()
Definition: qt/version.h:95
Information about the current ServusQt version.
Definition: qt/version.h:56
static std::string toJSON()
Definition: qt/version.h:114
Defines export visibility macros for library ServusQt.
static bool check()
Runtime check for ABI compatibility.
Definition: qt/version.h:88
#define SERVUSQT_VERSION_MINOR
The current minor version.
Definition: qt/version.h:20