split property & values into separate classes and files

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
folling 2023-11-21 15:10:43 +01:00 committed by Folling
parent f38ebeab14
commit e377340781
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
28 changed files with 700 additions and 269 deletions

View file

@ -0,0 +1,5 @@
#pragma once
struct IkarusNumberValue {
long double value;
};

View file

@ -0,0 +1,8 @@
#pragma once
#include <string>
/// \private
struct IkarusTextValue {
std::string value;
};

View file

@ -0,0 +1,6 @@
#pragma once
/// \private
struct IkarusToggleValue {
bool value;
};