123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP
- #define LS_STD_SERIALIZABLE_JSON_STATE_CONNECTION_HPP
- #include "../../../base/Class.hpp"
- #include "../../ISerializable.hpp"
- #include "../../../logic/StateConnection.hpp"
- #include <memory>
- #include <json.hpp>
- namespace ls_std {
- class SerializableJSONStateConnection : public Class, public ISerializable {
- public:
- explicit SerializableJSONStateConnection(std::shared_ptr<ls_std::StateConnection> _value);
- ~SerializableJSONStateConnection() = default;
-
- ls_std::byte_field marshal() override;
- void unmarshal(const ls_std::byte_field& _data) override;
-
- void setValue(std::shared_ptr<ls_std::StateConnection> _value);
- private:
- nlohmann::json jsonObject {};
- std::shared_ptr<ls_std::StateConnection> value {};
- void _clear();
- void _update();
- };
- }
- #endif
|