Equalizer  2.0.0
Parallel Rendering Framework
eq/version.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef EQUALIZER_VERSION_H
9 #define EQUALIZER_VERSION_H
10 
11 #include <eq/api.h>
12 #include <string>
13 
14 namespace eq
15 {
17 # define EQ_VERSION_MAJOR 2
18 
20 # define EQ_VERSION_MINOR 0
21 
23 # define EQ_VERSION_PATCH 0
24 
26 # define EQ_VERSION_REVISION 0x0e3dfa8
27 
29 # define EQ_VERSION_ABI 200ull
30 
32 # define EQ_VERSION_GT( MAJOR, MINOR, PATCH ) \
33  ( (EQ_VERSION_MAJOR>MAJOR) || \
34  (EQ_VERSION_MAJOR==MAJOR && (EQ_VERSION_MINOR>MINOR || \
35  (EQ_VERSION_MINOR==MINOR && EQ_VERSION_PATCH>PATCH))))
36 
38 # define EQ_VERSION_GE( MAJOR, MINOR, PATCH ) \
39  ( (EQ_VERSION_MAJOR>MAJOR) || \
40  (EQ_VERSION_MAJOR==MAJOR && (EQ_VERSION_MINOR>MINOR || \
41  (EQ_VERSION_MINOR==MINOR && EQ_VERSION_PATCH>=PATCH))))
42 
44 # define EQ_VERSION_LT( MAJOR, MINOR, PATCH ) \
45  ( (EQ_VERSION_MAJOR<MAJOR) || \
46  (EQ_VERSION_MAJOR==MAJOR && (EQ_VERSION_MINOR<MINOR || \
47  (EQ_VERSION_MINOR==MINOR && EQ_VERSION_PATCH<PATCH))))
48 
50 # define EQ_VERSION_LE( MAJOR, MINOR, PATCH ) \
51  ( (EQ_VERSION_MAJOR<MAJOR) || \
52  (EQ_VERSION_MAJOR==MAJOR && (EQ_VERSION_MINOR<MINOR || \
53  (EQ_VERSION_MINOR==MINOR && EQ_VERSION_PATCH<=PATCH))))
54 
56 class EQ_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()==EQ_VERSION_MAJOR &&
91  getMinor()==EQ_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": 2,
119  "minor": 0,
120  "patch": 0,
121  "abi": 200,
122  "revision": "0e3dfa8"
123  }
124  )";
125  }
126 };
127 
128 }
129 
130 #endif
#define EQ_VERSION_MAJOR
The current major version.
Definition: eq/version.h:17
static std::string getSchema()
Definition: eq/version.h:95
#define EQ_VERSION_MINOR
The current minor version.
Definition: eq/version.h:20
static std::string toJSON()
Definition: eq/version.h:114
The Equalizer client library.
Definition: eq/agl/types.h:23
static bool check()
Runtime check for ABI compatibility.
Definition: eq/version.h:88
Information about the current Equalizer version.
Definition: eq/version.h:56