SectionPairSectionProvider.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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-15
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP
  11. #define LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP
  12. #include <ls-std/ls-std-core.hpp>
  13. #include <ls-std/ls-std-io.hpp>
  14. #include <memory>
  15. #include <string>
  16. namespace test::io
  17. {
  18. class SectionPairSectionProvider
  19. {
  20. public:
  21. SectionPairSectionProvider();
  22. ~SectionPairSectionProvider();
  23. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SectionPairSection> createSectionWithSandraExample();
  24. [[nodiscard]] static ::std::shared_ptr<ls::standard::io::SectionPairSection> createSectionWithTomExample();
  25. [[nodiscard]] static ls::standard::core::type::byte_field createSerializedSectionWithSandraExample(const ::std::string &_newLine);
  26. [[nodiscard]] static ls::standard::core::type::byte_field createSerializedSectionWithTomExample(const ::std::string &_newLine);
  27. };
  28. }
  29. #endif