Back to Taskflow

taskflow/taskflow.hpp file

docs/taskflow_8hpp.html

4.0.01.0 KB
Original Source

taskflow/taskflow.hpp file

main taskflow include file

Namespaces

namespace tftaskflow namespace

Defines

#define TF_VERSIONversion of the Taskflow (currently 4.1.0)#define TF_MAJOR_VERSIONmajor version of Taskflow, which is equal to TF_VERSION/100000#define TF_MINOR_VERSIONminor version of Taskflow, which is equal to TF_VERSION / 100 % 1000#define TF_PATCH_VERSIONpatch version of Taskflow, which is equal to TF_VERSION % 100

Define documentation

#define TF_VERSION

version of the Taskflow (currently 4.1.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