Equalizer  2.1.0
Parallel Rendering Framework
eq/fabric/version.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef EQUALIZERFABRIC_VERSION_H
9 #define EQUALIZERFABRIC_VERSION_H
10 
11 #include <eq/fabric/api.h>
12 #include <string>
13 
14 namespace eqfabric
15 {
17 # define EQFABRIC_VERSION_MAJOR 2
18 
20 # define EQFABRIC_VERSION_MINOR 1
21 
23 # define EQFABRIC_VERSION_PATCH 0
24 
26 # define EQFABRIC_VERSION_REVISION 0x3962d38
27 
29 # define EQFABRIC_VERSION_ABI 210ull
30 
32 # define EQFABRIC_VERSION_STRING \
33  "2.1.0"
34 
36 # define EQFABRIC_REV_STRING \
37  "2.1.0.0x3962d38"
38 
40 # define EQFABRIC_VERSION_GT( MAJOR, MINOR, PATCH ) \
41  ( (EQFABRIC_VERSION_MAJOR>MAJOR) || \
42  (EQFABRIC_VERSION_MAJOR==MAJOR && (EQFABRIC_VERSION_MINOR>MINOR || \
43  (EQFABRIC_VERSION_MINOR==MINOR && EQFABRIC_VERSION_PATCH>PATCH))))
44 
46 # define EQFABRIC_VERSION_GE( MAJOR, MINOR, PATCH ) \
47  ( (EQFABRIC_VERSION_MAJOR>MAJOR) || \
48  (EQFABRIC_VERSION_MAJOR==MAJOR && (EQFABRIC_VERSION_MINOR>MINOR || \
49  (EQFABRIC_VERSION_MINOR==MINOR && EQFABRIC_VERSION_PATCH>=PATCH))))
50 
52 # define EQFABRIC_VERSION_LT( MAJOR, MINOR, PATCH ) \
53  ( (EQFABRIC_VERSION_MAJOR<MAJOR) || \
54  (EQFABRIC_VERSION_MAJOR==MAJOR && (EQFABRIC_VERSION_MINOR<MINOR || \
55  (EQFABRIC_VERSION_MINOR==MINOR && EQFABRIC_VERSION_PATCH<PATCH))))
56 
58 # define EQFABRIC_VERSION_LE( MAJOR, MINOR, PATCH ) \
59  ( (EQFABRIC_VERSION_MAJOR<MAJOR) || \
60  (EQFABRIC_VERSION_MAJOR==MAJOR && (EQFABRIC_VERSION_MINOR<MINOR || \
61  (EQFABRIC_VERSION_MINOR==MINOR && EQFABRIC_VERSION_PATCH<=PATCH))))
62 
64 class EQFABRIC_API Version
65 {
66 public:
68  static int getMajor();
69 
71  static int getMinor();
72 
74  static int getPatch();
75 
77  static std::string getString();
78 
80  static unsigned long long getRevision();
81 
83  static int getABI();
84 
86  static std::string getRevString();
87 
96  static bool check()
97  {
98  return getMajor()==EQFABRIC_VERSION_MAJOR &&
99  getMinor()==EQFABRIC_VERSION_MINOR;
100  }
101 
103  static std::string getSchema()
104  {
105  return R"(
106  {
107  "title": "Version",
108  "type": "object",
109  "description": "Version information of the running application",
110  "properties": {
111  "major": { "type": "integer" },
112  "minor": { "type": "integer" },
113  "patch": { "type": "integer" },
114  "abi": { "type": "integer" },
115  "revision": { "type": "string" }
116  }
117  }
118  )";
119  }
120 
122  static std::string toJSON()
123  {
124  return R"(
125  {
126  "major": 2,
127  "minor": 1,
128  "patch": 0,
129  "abi": 210,
130  "revision": "3962d38"
131  }
132  )";
133  }
134 };
135 
136 }
137 
138 #endif
Defines export visibility macros for library EqualizerFabric.
static bool check()
Runtime check for ABI compatibility.
static std::string toJSON()
Information about the current EqualizerFabric version.
#define EQFABRIC_VERSION_MINOR
The current minor version.
static std::string getSchema()
#define EQFABRIC_VERSION_MAJOR
The current major version.