9#ifndef SKYWAY_SKYWAY_HPP_
10#define SKYWAY_SKYWAY_HPP_
12#include <boost/optional.hpp>
18static const unsigned VERSION_MAJOR = 2;
19static const unsigned VERSION_MINOR = 1;
20static const unsigned VERSION_PATCH = 3;
22inline std::string GetVersionString() {
24 return std::to_string(VERSION_MAJOR)
25 +
"." + std::to_string(VERSION_MINOR)
26 +
"." + std::to_string(VERSION_PATCH);