blob: b84a2fca238a26a5fa76b8c49c2c7683fc6a8176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef CORE_VERSION_HH
#define CORE_VERSION_HH 1
#pragma once
namespace version
{
extern const unsigned long major;
extern const unsigned long minor;
extern const unsigned long patch;
} // namespace version
namespace version
{
extern const std::string_view commit;
extern const std::string_view semver;
} // namespace version
#endif // CORE_VERSION_HH
|