SerializableJSONLong.hpp 931 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-25
  6. * Changed: 2020-11-20
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_JSON_LONG_HPP
  10. #define LS_STD_SERIALIZABLE_JSON_LONG_HPP
  11. #include <ls_std/base/Class.hpp>
  12. #include <ls_std/serialization/ISerializable.hpp>
  13. #include <ls_std/boxing/Long.hpp>
  14. #include <ls_std/lib/nlohmann_json/include/nlohmann/json.hpp>
  15. namespace ls_std {
  16. class SerializableJSONLong : public Class, public ISerializable {
  17. public:
  18. explicit SerializableJSONLong(std::shared_ptr<ls_std::Long> _value);
  19. ~SerializableJSONLong() = default;
  20. ls_std::byte_field marshal() override;
  21. void unmarshal(const ls_std::byte_field& _data) override;
  22. private:
  23. nlohmann::json jsonObject {};
  24. std::shared_ptr<ls_std::Long> value {};
  25. void _update();
  26. };
  27. }
  28. #endif