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