IOFormat 1.12.0
Loading...
Searching...
No Matches
Version.h
1#pragma once
2
3#include <string>
4
5namespace ioformat
6{
7
12{
13 int major;
14 int minor;
15 int patch;
16};
17
18} // end namespace ioformat
19
23constexpr ioformat::VersionInfo IOFORMAT_VERSION{0, 0, 0};
24
28constexpr const char* IOFORMAT_VERSION_STRING = "0.0.0";
29
33constexpr const char* IOFORMAT_SHA = "9985b65bbbe9986aa069adedf26b923bcfb80b82";
Global namespace which contains all methods to encode/decode data from/into different resources (file...
Definition Error.h:6
Definition Version.h:12