cpp-terminal 1.0.0
Small C++ library for writing multiplatform terminal applications
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1/*
2* cpp-terminal
3* C++ library for writing multi-platform terminal applications.
4*
5* SPDX-FileCopyrightText: 2019-2024 cpp-terminal
6*
7* SPDX-License-Identifier: MIT
8*/
9
10#pragma once
11
12#include <cstdint>
13#include <string>
14
15namespace Term
16{
17namespace Version
18{
19
25std::uint16_t major() noexcept;
26
32std::uint16_t minor() noexcept;
33
39std::uint16_t patch() noexcept;
40
46std::string string() noexcept;
47
48} // namespace Version
49
55std::string homepage() noexcept;
56
57} // namespace Term
std::uint16_t patch() noexcept
Patch version of cpp-terminal.
std::uint16_t major() noexcept
Major version of cpp-terminal.
std::uint16_t minor() noexcept
Minor version of cpp-terminal.
Definition args.cpp:13
std::string homepage() noexcept
Homepage of cpp-terminal.