HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
version.hpp
1// Copyright 2020 Pokitec
2// All rights reserved.
3
4#pragma once
5
6#include <string>
7
8namespace tt {
9
33
34inline version ttauri_version;
35inline version application_version;
36
37}
Definition version.hpp:10
int minor
Incremented on additive change.
Definition version.hpp:14
int git_commits_since_version_tag
The number of commits since the version tag.
Definition version.hpp:28
std::string name
Name of the application or library.
Definition version.hpp:19
bool git_local_changes
There are local changes.
Definition version.hpp:31
std::string git_commit
The git sha.
Definition version.hpp:25
std::string git_branch
Name of the git branch.
Definition version.hpp:22
int patch
Incremented on bug fixes.
Definition version.hpp:16
int major
Incremented on backward incompatible change.
Definition version.hpp:12