SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
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 <string>
13
14namespace skyway {
15
16// General
17static const unsigned VERSION_MAJOR = 4;
18static const unsigned VERSION_MINOR = 0;
19static const unsigned VERSION_PATCH = 0;
20
21inline std::string GetVersionString() {
22 // clang-format off
23 return std::to_string(VERSION_MAJOR)
24 + "." + std::to_string(VERSION_MINOR)
25 + "." + std::to_string(VERSION_PATCH);
26 // clang-format on
27}
28
29} // namespace skyway
30
31#endif /* SKYWAY_SKYWAY_HPP_ */