HooverChessUtils_PgnReader 0.9.0
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1// Hoover Chess Utilities / PGN reader
2// Copyright (C) 2025 Sami Kiminki
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17#ifndef HOOVER_CHESS_UTILS__PGN_READER__VERSION_H_INCLUDED
18#define HOOVER_CHESS_UTILS__PGN_READER__VERSION_H_INCLUDED
19
20#include <string_view>
21
22
23#define HOOVER_CHESS_UTILS_VERSION_MAJOR 0
24#define HOOVER_CHESS_UTILS_VERSION_MINOR 9
25#define HOOVER_CHESS_UTILS_VERSION_PATCH 0
26#define HOOVER_CHESS_UTILS_VERSION_SUFFIX "-dev"
27
29{
30
31constexpr std::string_view getVersionString() noexcept
32{
33 return std::string_view { "0.9.0-dev" };
34}
35
36}
37
38#endif
Definition chessboard-types-squareset.h:30
constexpr std::string_view getVersionString() noexcept
Definition version.h:31