/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-11 * Changed: 2026-06-23 * * */ #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_SINGLE_VALUE_HPP #define LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_SINGLE_VALUE_HPP #include "SerializableSectionPairParameter.hpp" #include #include #include #include /* * @doc: class(name: 'SerializableSectionPairRowSingleValue', package: 'io') * @doc: io.SerializableSectionPairRowSingleValue.description('This class can serialize a Section Pair single value for file persistence.') * */ namespace ls::standard::io { class LS_STD_DYNAMIC_GOAL SerializableSectionPairRowSingleValue : public ls::standard::core::interface_type::ISerializable, public ls::standard::core::Class { public: explicit SerializableSectionPairRowSingleValue(const ls::standard::io::SerializableSectionPairParameter &_parameter); ~SerializableSectionPairRowSingleValue() noexcept override; [[nodiscard]] ::std::shared_ptr getValue() const; [[nodiscard]] ls::standard::core::type::byte_field marshal() override; void unmarshal(const ls::standard::core::type::byte_field &_data) override; private: ls::standard::io::SerializableSectionPairParameter parameter{}; }; } #endif