27 constexpr unsigned int MAJOR_FACTOR = 10000;
28 constexpr unsigned int MINOR_FACTOR = 100;
32#define PROJECT_VERSION_STRING std::to_string(PROJECT_VER_MAJOR) + std::string(".") + std::to_string(PROJECT_VER_MINOR) + std::string(".") + std::to_string(PROJECT_VER_PATCH)
constexpr unsigned int PROJECT_VER_MAJOR
Major Version of the Project (maximum 2 digits)
Definition Version.hpp:19
constexpr unsigned int PROJECT_VER_MINOR
Minor Version of the Project (maximum 2 digits)
Definition Version.hpp:21
constexpr unsigned int PROJECT_VERSION()
Project Version Integer.
Definition Version.hpp:25
constexpr unsigned int PROJECT_VER_PATCH
Patch Version of the Project (maximum 2 digits)
Definition Version.hpp:23