file
taskflow.hppmain taskflow include file
Namespaces
- namespace tf
- taskflow namespace
Defines
- #define TF_VERSION
- version of the Taskflow (currently 3.10.0)
- #define TF_MAJOR_VERSION
- major version of Taskflow, which is equal to
TF_VERSION/100000
- #define TF_MINOR_VERSION
- minor version of Taskflow, which is equal to
TF_VERSION / 100 % 1000
- #define TF_PATCH_VERSION
- patch version of Taskflow, which is equal to
TF_VERSION % 100
Define documentation
#define TF_VERSION
version of the Taskflow (currently 3.10.0)
The version system is made of a major version number, a minor version number, and a patch number:
- TF_VERSION % 100 is the patch level
- TF_VERSION / 100 % 1000 is the minor version
- TF_VERSION / 100000 is the major version