intermediate commit

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
folling 2023-11-24 14:52:46 +01:00 committed by Folling
parent 82e5309f80
commit ea221cdf85
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
11 changed files with 175 additions and 175 deletions

8
src/values/value.hpp Normal file
View file

@ -0,0 +1,8 @@
#pragma once
#include <variant>
struct IkarusValue {
bool indeterminate;
std::variant<struct IkarusToggleValue *, struct IkarusNumberValue *, struct IkarusTextValue *> data;
};