SerializableSectionPairRowSingleValue.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-11
  6. * Changed: 2023-05-18
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_SINGLE_VALUE_HPP
  10. #define LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_SINGLE_VALUE_HPP
  11. #include "SerializableSectionPairParameter.hpp"
  12. #include <ls-std/core/Class.hpp>
  13. #include <ls-std/core/interface/ISerializable.hpp>
  14. #include <ls-std/os/dynamic-goal.hpp>
  15. #include <memory>
  16. namespace ls::std::io
  17. {
  18. class LS_STD_DYNAMIC_GOAL SerializableSectionPairRowSingleValue : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  19. {
  20. public:
  21. explicit SerializableSectionPairRowSingleValue(const ls::std::io::SerializableSectionPairParameter &_parameter);
  22. ~SerializableSectionPairRowSingleValue() noexcept override;
  23. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
  24. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  25. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  26. private:
  27. ls::std::io::SerializableSectionPairParameter parameter{};
  28. };
  29. }
  30. #endif