/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-14 * Changed: 2020-11-06 * * */ #ifndef LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP #define LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP #include "../../../../../include/base/Class.hpp" #include "../../ISerializable.hpp" #include "../../../logic/StateConnection.hpp" #include #include namespace ls_std { class SerializableJSONStateConnection : public Class, public ISerializable { public: explicit SerializableJSONStateConnection(std::shared_ptr _value); ~SerializableJSONStateConnection() = default; // implementation ls_std::byte_field marshal() override; void unmarshal(const ls_std::byte_field& _data) override; // additional functionality void setValue(std::shared_ptr _value); private: nlohmann::json jsonObject {}; std::shared_ptr value {}; void _clear(); void _update(); }; } #endif