/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-15 * Changed: 2021-05-02 * * */ #ifndef LS_STD_SERIALIZABLE_JSON_STATE_HPP #define LS_STD_SERIALIZABLE_JSON_STATE_HPP #include #include #include #include #include namespace ls_std { class SerializableJsonState : public ls_std::Class, public ls_std::ISerializable { public: explicit SerializableJsonState(const std::shared_ptr &_value); ~SerializableJsonState() override = default; // implementation ls_std::byte_field marshal() override; void unmarshal(const ls_std::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 _clear(); void _unmarshalStateConnections(); void _update(); void _updateStateConnections(); }; } #endif