nsol  0.4.1
Nsol - Neuroscience Objects Library
version.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef NSOL_VERSION_H
9 #define NSOL_VERSION_H
10 
11 #include <nsol/api.h>
12 #include <string>
13 
14 namespace nsol
15 {
17 # define NSOL_VERSION_MAJOR 0
18 
20 # define NSOL_VERSION_MINOR 4
21 
23 # define NSOL_VERSION_PATCH 1
24 
26 # define NSOL_VERSION_REVISION 0xdbd12fc
27 
29 # define NSOL_VERSION_ABI 4ull
30 
32 # define NSOL_VERSION_STRING \
33  "0.4.1"
34 
36 # define NSOL_REV_STRING \
37  "0.4.1.0xdbd12fc"
38 
40 # define NSOL_VERSION_GT( MAJOR, MINOR, PATCH ) \
41  ( (NSOL_VERSION_MAJOR>MAJOR) || \
42  (NSOL_VERSION_MAJOR==MAJOR && (NSOL_VERSION_MINOR>MINOR || \
43  (NSOL_VERSION_MINOR==MINOR && NSOL_VERSION_PATCH>PATCH))))
44 
46 # define NSOL_VERSION_GE( MAJOR, MINOR, PATCH ) \
47  ( (NSOL_VERSION_MAJOR>MAJOR) || \
48  (NSOL_VERSION_MAJOR==MAJOR && (NSOL_VERSION_MINOR>MINOR || \
49  (NSOL_VERSION_MINOR==MINOR && NSOL_VERSION_PATCH>=PATCH))))
50 
52 # define NSOL_VERSION_LT( MAJOR, MINOR, PATCH ) \
53  ( (NSOL_VERSION_MAJOR<MAJOR) || \
54  (NSOL_VERSION_MAJOR==MAJOR && (NSOL_VERSION_MINOR<MINOR || \
55  (NSOL_VERSION_MINOR==MINOR && NSOL_VERSION_PATCH<PATCH))))
56 
58 # define NSOL_VERSION_LE( MAJOR, MINOR, PATCH ) \
59  ( (NSOL_VERSION_MAJOR<MAJOR) || \
60  (NSOL_VERSION_MAJOR==MAJOR && (NSOL_VERSION_MINOR<MINOR || \
61  (NSOL_VERSION_MINOR==MINOR && NSOL_VERSION_PATCH<=PATCH))))
62 
64 class NSOL_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()==NSOL_VERSION_MAJOR &&
99  getMinor()==NSOL_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": 0,
127  "minor": 4,
128  "patch": 1,
129  "abi": 4,
130  "revision": "dbd12fc"
131  }
132  )";
133  }
134 };
135 
136 }
137 
138 #endif
Defines export visibility macros for library nsol.
Information about the current nsol version.
Definition: version.h:64
#define NSOL_VERSION_MINOR
The current minor version.
Definition: version.h:20
static std::string toJSON()
Definition: version.h:122
#define NSOL_VERSION_MAJOR
The current major version.
Definition: version.h:17
static bool check()
Runtime check for ABI compatibility.
Definition: version.h:96
Definition: Axon.h:28
static std::string getSchema()
Definition: version.h:103