QUGaR 0.0.4
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1// --------------------------------------------------------------------------
2//
3// Copyright (C) 2025-present by Pablo Antolin
4//
5// This file is part of the QUGaR library.
6//
7// SPDX-License-Identifier: MIT
8//
9// --------------------------------------------------------------------------
10
11#ifndef QUGAR_VERSION_HPP
12#define QUGAR_VERSION_HPP
13
20
21#include <string_view>
22
23namespace qugar {
24// clang-format off
25constexpr int QUGAR_VERSION_MAJOR = { 0 };
26constexpr int QUGAR_VERSION_MINOR = { 0 };
27constexpr int QUGAR_VERSION_PATCH = { 4 };
28constexpr int QUGAR_VERSION_TWEAK = { };
29// clang-format on
30constexpr std::string_view QUGAR_VERSION_STRING{ "0.0.4" };
31constexpr std::string_view QUGAR_VERSION_GIT{ "c9cb306" };
32
33}// namespace qugar
34
35#endif// QUGAR_VERSION_HPP
QUGaR's main namespace.
Definition affine_transf.hpp:28
constexpr int QUGAR_VERSION_MAJOR
Definition version.hpp:25
constexpr int QUGAR_VERSION_TWEAK
Definition version.hpp:28
constexpr std::string_view QUGAR_VERSION_GIT
Definition version.hpp:31
constexpr int QUGAR_VERSION_MINOR
Definition version.hpp:26
constexpr std::string_view QUGAR_VERSION_STRING
Definition version.hpp:30
constexpr int QUGAR_VERSION_PATCH
Definition version.hpp:27