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