/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-12-07 * Changed: 2022-05-19 * * */ #ifndef LS_STD_SERIALIZABLE_JSON_EVENT_HPP #define LS_STD_SERIALIZABLE_JSON_EVENT_HPP #include #include #include #include #include namespace ls { namespace std { namespace event { class SerializableJsonEvent : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable { public: explicit SerializableJsonEvent(const ::std::shared_ptr &_value); ~SerializableJsonEvent() override = default; // implementation ls::std::core::type::byte_field marshal() override; void unmarshal(const ls::std::core::type::byte_field &_data) override; // additional functionality ::std::shared_ptr getValue(); void setValue(const ::std::shared_ptr &_value); private: nlohmann::json jsonObject{}; ::std::shared_ptr value{}; void _assignValue(const ::std::shared_ptr &_value); void _unmarshalParameterList(); void _update(); void _updateEventParameterList(); }; } } } #endif