HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
version.hpp
1// Copyright Take Vos 2020.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include <string>
8#include <string_view>
9
10namespace tt {
11
12struct version {
15
17 int major;
19 int minor;
21 int patch;
22
23 version(std::string_view name, int major, int minor, int patch) noexcept :
25};
26
27}
Definition version.hpp:12
int minor
Incremented on additive change.
Definition version.hpp:19
std::string name
Name of the application or library.
Definition version.hpp:14
int patch
Incremented on bug fixes.
Definition version.hpp:21
int major
Incremented on backward incompatible change.
Definition version.hpp:17