#pragma once #include #include namespace nlohmann { template<> struct adl_serializer { static void to_json(json& j, const Corrade::Containers::String& val); static void from_json(const json& j, Corrade::Containers::String& val); }; template<> struct adl_serializer { static void to_json(json& j, Corrade::Containers::StringView val); static void from_json(const json& j, Corrade::Containers::StringView& val); }; } // namespace nlohmann