12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-21
- * Changed: 2020-11-20
- *
- * */
- #ifndef LS_STD_SERIALIZABLE_JSON_INTEGER_HPP
- #define LS_STD_SERIALIZABLE_JSON_INTEGER_HPP
- #include <ls_std/serialization/ISerializable.hpp>
- #include <ls_std/base/Class.hpp>
- #include <ls_std/boxing/Integer.hpp>
- #include <ls_std/lib/nlohmann_json/include/nlohmann/json.hpp>
- namespace ls_std {
- class SerializableJSONInteger : public Class, public ISerializable {
- public:
- explicit SerializableJSONInteger(std::shared_ptr<ls_std::Integer> _value);
- ~SerializableJSONInteger() = default;
- ls_std::byte_field marshal() override;
- void unmarshal(const ls_std::byte_field& _data) override;
- private:
- std::shared_ptr<ls_std::Integer> value {};
- nlohmann::json jsonObject {};
- void _update();
- };
- }
- #endif
|