implement value.hpp

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
Folling 2023-12-03 11:41:06 +01:00 committed by Folling
parent 643ece4342
commit 7536cf4c7c
No known key found for this signature in database
6 changed files with 93 additions and 96 deletions

View file

@ -20,5 +20,5 @@ public:
~IkarusToggleValue() override = default;
public:
boost::container::vector<data_type> value{};
boost::variant2::variant<boost::variant2::monostate, boost::container::vector<data_type>> data{};
};