Made 'syncFromDevice' work again.
This commit is contained in:
20
bc.h
20
bc.h
@@ -110,14 +110,7 @@ constexpr auto to_u(E e) noexcept {
|
||||
#pragma once
|
||||
#include <QLatin1StringView>
|
||||
|
||||
namespace Consts {
|
||||
using namespace Qt::Literals::StringLiterals;
|
||||
// 1. Compile-Time Konstante (constexpr)
|
||||
// 2. Kein Heap-Speicher (Zero Allocation)
|
||||
// 3. Minimale Binary-Größe (1 Byte char) <- 8 Bit!
|
||||
// Beste Performance, keine Allokation, Typ-Sicher
|
||||
inline constexpr auto OrgName = "source::worx"_L1;
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
struct BC
|
||||
@@ -133,6 +126,17 @@ public:
|
||||
};
|
||||
Q_ENUM(OpID)
|
||||
|
||||
// __fix! flags draus machen ?
|
||||
enum class State : uint8_t
|
||||
{
|
||||
Invalid,
|
||||
Locked,
|
||||
Failed,
|
||||
InSync,
|
||||
OK
|
||||
};
|
||||
Q_ENUM(State)
|
||||
|
||||
enum class ID : uint8_t
|
||||
{
|
||||
//{%Region Console}
|
||||
|
||||
Reference in New Issue
Block a user