Hedgehog  0.0.0
A library to generate hybrid pipeline workflow systems
version.h
Go to the documentation of this file.
1 #include <string>
2 
7 
8 namespace hh{
10 
11 // hedgehog version number
12  const int MAJOR_VERSION = 1;
13  const int MINOR_VERSION = 0;
14  const int PATCH_VERSION = 2;
15  const std::string FULL_VERSION = "1.0.2";
16 }
const int MAJOR_VERSION
Hedgehog major version.
Definition: version.h:12
const int PATCH_VERSION
Hedgehog patch version.
Definition: version.h:14
Hedgehog main namespace.
const std::string FULL_VERSION
Hedgehog full version.
Definition: version.h:15
const int MINOR_VERSION
Hedgehog minor version.
Definition: version.h:13