SerializableSectionPairRowProvider.hpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2023-02-17
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_PROVIDER_HPP
  11. #define LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_PROVIDER_HPP
  12. #include <ls-std/ls-std-io.hpp>
  13. #include <memory>
  14. #include <string>
  15. namespace test::io
  16. {
  17. class SerializableSectionPairRowProvider
  18. {
  19. public:
  20. SerializableSectionPairRowProvider();
  21. ~SerializableSectionPairRowProvider();
  22. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SerializableSectionPairRow> createListValueForMarshal(const ::std::string &_newLine);
  23. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SerializableSectionPairRow> createListValueForUnmarshal(const ::std::string &_newLine);
  24. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SerializableSectionPairRow> createSingleValueForMarshal(const ::std::string &_newLine);
  25. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SerializableSectionPairRow> createSingleValueForUnmarshal(const ::std::string &_newLine);
  26. };
  27. }
  28. #endif