NUMA++ 0.11.0
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1/**
2 * @file
3 * Contains version macro.
4 * @ingroup numapp
5 * @copyright
6 * (c) Copyright ESO 2024
7 * All Rights Reserved
8 * ESO (eso.org) is an Intergovernmental Organisation, and therefore special legal conditions apply.
9 */
10#ifndef NUMAPP_VERSION_HPP
11#define NUMAPP_VERSION_HPP
12
13/**
14 * Integer representation of <tt>0.11.0</tt> version tuple.
15 *
16 * <tt>#include <numapp/version.hpp></tt>
17 *
18 * @code
19 * Given version x.y.z:
20 * x = NUMAPP_VERSION / 100'000
21 * y = NUMAPP_VERSION / 100 % 1'000
22 * z = NUMAPP_VERSION % 100
23 * @endcode
24 *
25 * @ingroup numapp
26 */
27#define NUMAPP_VERSION 1100 // 0.11.0
28
29#endif // NUMAPP_VERSION_HPP