NUMA++ 0.12.0
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1/**
2 * @file
3 * @brief Contains version macro.
4 * @copyright
5 * SPDX-FileCopyrightText: 2023-2023 European Southern Observatory (ESO)
6 *
7 * SPDX-License-Identifier: LGPL-3.0-only
8 */
9#ifndef NUMAPP_VERSION_HPP
10#define NUMAPP_VERSION_HPP
11
12/**
13 * Integer representation of <tt>0.12.0</tt> version tuple.
14 *
15 * <tt>#include <numapp/version.hpp></tt>
16 *
17 * @code
18 * Given version x.y.z:
19 * x = NUMAPP_VERSION / 100'000
20 * y = NUMAPP_VERSION / 100 % 1'000
21 * z = NUMAPP_VERSION % 100
22 * @endcode
23 *
24 * @ingroup numapp
25 */
26#define NUMAPP_VERSION 1200 // 0.12.0
27
28#endif // NUMAPP_VERSION_HPP