#include <version.h>
|
constexpr | Version (size_t p_major=0, size_t p_minor=0, size_t p_patch=0) |
|
constexpr bool | IsAtLeast (const Version &other) const |
|
std::string | ToString () const |
|
Definition at line 16 of file version.h.
◆ Version()
constexpr impeller::Version::Version |
( |
size_t |
p_major = 0 , |
|
|
size_t |
p_minor = 0 , |
|
|
size_t |
p_patch = 0 |
|
) |
| |
|
inlineexplicitconstexpr |
◆ FromVector()
static std::optional< Version > impeller::Version::FromVector |
( |
const std::vector< size_t > & |
version | ) |
|
|
static |
◆ IsAtLeast()
constexpr bool impeller::Version::IsAtLeast |
( |
const Version & |
other | ) |
const |
|
inlineconstexpr |
Definition at line 31 of file version.h.
31 {
33 std::tie(other.major_version, other.minor_version,
34 other.patch_version);
35 }
◆ ToString()
std::string impeller::Version::ToString |
( |
| ) |
const |
◆ major_version
size_t impeller::Version::major_version |
◆ minor_version
size_t impeller::Version::minor_version |
◆ patch_version
size_t impeller::Version::patch_version |
The documentation for this struct was generated from the following file: