Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
version.cpp
Go to the documentation of this file.
1#include "version_impl.hpp"
2
3namespace sysio { namespace version {
4
5 const std::string& version_client() {
6 static const std::string version{_version_client()};
7 return version;
8 }
9
10 const std::string& version_full() {
11 static const std::string version{_version_full()};
12 return version;
13 }
14
15} }
const std::string & version_client()
< Grab the basic version information of the client; example: v1.8.0-rc1
Definition version.cpp:5
const std::string & version_full()
Definition version.cpp:10
std::string _version_full()
std::string _version_client()
< Helper function for version_client()