SkyWay for Linux
読み取り中…
検索中…
一致する文字列を見つけられません
skyway.hpp
1//
2// skyway.hpp
3// skyway
4//
5// Created by sandabu on 2021/05/20.
6// Copyright © 2021 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_SKYWAY_HPP_
10#define SKYWAY_SKYWAY_HPP_
11
12#include <boost/optional.hpp>
13#include <string>
14
15namespace skyway {
16
17// General
18static const unsigned VERSION_MAJOR = 2;
19static const unsigned VERSION_MINOR = 1;
20static const unsigned VERSION_PATCH = 3;
21
22inline std::string GetVersionString() {
23 // clang-format off
24 return std::to_string(VERSION_MAJOR)
25 + "." + std::to_string(VERSION_MINOR)
26 + "." + std::to_string(VERSION_PATCH);
27 // clang-format on
28}
29
30} // namespace skyway
31
32#endif /* SKYWAY_SKYWAY_HPP_ */