Lugdunum  0.1.0
Version.inl
Go to the documentation of this file.
1 inline Version Version::fromInt(uint32_t version) {
2  return {
3  (version >> 22) & 0x3FF, // major
4  (version >> 12) & 0x3FF, // minor
5  version & 0xFFF // patch
6  };
7 }
Stores the version of the Application.
Definition: Version.hpp:9