oxen-core/src/wallet3/version.hpp

14 lines
422 B
C++
Raw Permalink Normal View History

2022-03-29 06:02:42 +02:00
#pragma once
#include <array>
2023-04-13 15:50:13 +02:00
#include <cstdint>
2022-03-29 06:02:42 +02:00
#include <string_view>
2023-04-13 15:50:13 +02:00
namespace wallet {
// Given a full wallet version of: wallet-1.2.3-abc these are:
extern const std::array<uint16_t, 3> VERSION; // [1, 2, 3]
extern const std::string_view VERSION_STR; // "1.2.3"
extern const std::string_view VERSION_TAG; // "abc"
extern const std::string_view VERSION_FULL; // "wallet-1.2.3-abc"
2022-03-29 06:02:42 +02:00
} // namespace wallet