AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
Semver.h
    1#pragma once
    2
    3#include <AUI/Common/AString.h>
    4namespace aui::updater {
    9    struct API_AUI_UPDATER Semver {
   10        unsigned major{}, minor{}, patch{};
   11
   12
   16        [[nodiscard]]
   17        uint64_t toLongInt() const noexcept {
   18            static constexpr auto STEP = 64 / 3;
   19            return ((major * STEP) + minor) * STEP + patch;
   20        }
   21
   22        bool operator==(const Semver&) const = default;
   23
   24        bool operator<(const Semver& rhs) const;
   25        bool operator>(const Semver& rhs) const;
   26        bool operator<=(const Semver& rhs) const;
   27        bool operator>=(const Semver& rhs) const;
   28
   32        static Semver fromString(const AString& version);
   33    };
   34}
Represents a Unicode character string.
Definition AString.h:38
Semantic version.
Definition Semver.h:9
static Semver fromString(const AString &version)
Parse semver from string.
uint64_t toLongInt() const noexcept
Converts semver to a long int representation.
Definition Semver.h:17