SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
skyway.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_SKYWAY_HPP_
6#define SKYWAY_SKYWAY_HPP_
7
8#include <string>
9
10namespace skyway {
11
12// General
13static const unsigned kVersionMajor = 8;
14static const unsigned kVersionMinor = 0;
15static const unsigned kVersionPatch = 0;
16
17inline std::string GetVersionString() {
18 // clang-format off
19 return std::to_string(kVersionMajor)
20 + "." + std::to_string(kVersionMinor)
21 + "." + std::to_string(kVersionPatch);
22 // clang-format on
23}
24
25} // namespace skyway
26
27#endif /* SKYWAY_SKYWAY_HPP_ */