mirror of
https://github.com/InfiniTimeOrg/InfiniTime.git
synced 2026-01-22 08:52:15 +01:00
12 lines
237 B
C++
12 lines
237 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
class BootloaderVersion {
|
|
public:
|
|
static uint32_t Major();
|
|
static uint32_t Minor();
|
|
static uint32_t Patch();
|
|
static const char* VersionString();
|
|
static bool IsValid();
|
|
};
|
|
} |