Taskflow  2.6.0-master-branch
version.hpp
1 #pragma once
2 
3 // TF_VERSION % 100 is the patch level
4 // TF_VERSION / 100 % 1000 is the minor version
5 // TF_VERSION / 100000 is the major version
6 
7 // current version: 2.6.0
8 #define TF_VERSION 200600
9 
10 #define TF_MAJOR_VERSION TF_VERSION/100000
11 #define TF_MINOR_VERSION TF_VERSION/100%1000
12 #define TF_PATCH_VERSION TF_VERSION%100
13 
14 namespace tf {
15 
19 constexpr const char* version() {
20  return "2.6.0";
21 }
22 
23 
24 } // end of namespace tf -----------------------------------------------------
25 
Definition: error.hpp:9