diff --git a/src/emulation/properties.hpp b/src/emulation/properties.hpp index 82d2fca..6be8a7d 100644 --- a/src/emulation/properties.hpp +++ b/src/emulation/properties.hpp @@ -26,6 +26,7 @@ #pragma once #include +#include #include #include #include @@ -75,7 +76,7 @@ class Property int minValue{}; int maxValue{}; }; - using Value = std::variant; + using Value = std::variant; Property(std::string name, Value val, std::string additionalInfo, bool isReadOnly = true); Property(std::string name, Value val, bool isReadOnly = true);