SerializableJsonInteger.hpp 1.2 KB

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