SerializableSectionPairRowProvider.hpp 1.1 KB

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