GLStats  0.3.3
version.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef GLSTATS_VERSION_H
9 #define GLSTATS_VERSION_H
10 
11 #include <GLStats/api.h>
12 #include <string>
13 
14 namespace GLStats
15 {
17 # define GLSTATS_VERSION_MAJOR 0
18 
20 # define GLSTATS_VERSION_MINOR 3
21 
23 # define GLSTATS_VERSION_PATCH 3
24 
26 # define GLSTATS_VERSION_REVISION 0x836dd5e
27 
29 # define GLSTATS_VERSION_ABI 1
30 
32 # define GLSTATS_VERSION_GT( MAJOR, MINOR, PATCH ) \
33  ( (GLSTATS_VERSION_MAJOR>MAJOR) || \
34  (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR>MINOR || \
35  (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH>PATCH))))
36 
38 # define GLSTATS_VERSION_GE( MAJOR, MINOR, PATCH ) \
39  ( (GLSTATS_VERSION_MAJOR>MAJOR) || \
40  (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR>MINOR || \
41  (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH>=PATCH))))
42 
44 # define GLSTATS_VERSION_LT( MAJOR, MINOR, PATCH ) \
45  ( (GLSTATS_VERSION_MAJOR<MAJOR) || \
46  (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR<MINOR || \
47  (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH<PATCH))))
48 
50 # define GLSTATS_VERSION_LE( MAJOR, MINOR, PATCH ) \
51  ( (GLSTATS_VERSION_MAJOR<MAJOR) || \
52  (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR<MINOR || \
53  (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH<=PATCH))))
54 
56 class GLSTATS_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 int getRevision();
73 
75  static int getABI();
76 
78  static std::string getRevString();
79 
88  static bool check()
89  {
90  return getMajor()==GLSTATS_VERSION_MAJOR &&
91  getMinor()==GLSTATS_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": 0,
119  "minor": 3,
120  "patch": 3,
121  "abi": 1,
122  "revision": "836dd5e"
123  }
124  )";
125  }
126 };
127 
128 }
129 
130 #endif
static std::string toJSON()
Definition: version.h:114
Defines export visibility macros for library GLStats.
static std::string getSchema()
Definition: version.h:95
#define GLSTATS_VERSION_MINOR
The current minor version.
Definition: version.h:20
#define GLSTATS_VERSION_MAJOR
The current major version.
Definition: version.h:17
Basic type definitions not provided by the operating system.
Definition: data.h:24
static bool check()
Runtime check for ABI compatibility.
Definition: version.h:88
Information about the current GLStats version.
Definition: version.h:56