Derecho  0.9
Distributed systems toolkit for RDMA
git_version.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 namespace derecho {
4 
9 extern const int MAJOR_VERSION;
14 extern const int MINOR_VERSION;
19 extern const int PATCH_VERSION;
25 extern const int COMMITS_AHEAD_OF_VERSION;
26 
31 extern const char* VERSION_STRING;
32 
38 extern const char* VERSION_STRING_PLUS_COMMITS;
39 
40 }
41 
42 
const int COMMITS_AHEAD_OF_VERSION
If the currently-compiled version of the Derecho library is more recent than the last "release" versi...
Definition: git_version.cpp:35
const int PATCH_VERSION
The current "patch" (more-minor) version number of the Derecho library, as defined by Git...
Definition: git_version.cpp:34
const char * VERSION_STRING
A constant C-style string containing the current Derecho library version in dot-separated format...
Definition: git_version.cpp:37
const int MAJOR_VERSION
The current major version number of the Derecho library, as defined by Git.
Definition: git_version.cpp:32
const int MINOR_VERSION
The current minor version number of the Derecho library, as defined by Git.
Definition: git_version.cpp:33
const char * VERSION_STRING_PLUS_COMMITS
A constant C-style string containing the current Derecho library version in dot-separated format...
Definition: git_version.cpp:42