SectionPairSectionProvider.hpp 912 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-15
  6. * Changed: 2023-02-16
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP
  10. #define LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP
  11. #include <ls-std/ls-std-core.hpp>
  12. #include <ls-std/ls-std-io.hpp>
  13. #include <memory>
  14. namespace test::io
  15. {
  16. class SectionPairSectionProvider
  17. {
  18. public:
  19. SectionPairSectionProvider();
  20. ~SectionPairSectionProvider();
  21. static ::std::shared_ptr<ls::std::io::SectionPairSection> createSectionWithSandraExample();
  22. static ::std::shared_ptr<ls::std::io::SectionPairSection> createSectionWithTomExample();
  23. static ls::std::core::type::byte_field createSerializedSectionWithSandraExample();
  24. static ls::std::core::type::byte_field createSerializedSectionWithTomExample();
  25. };
  26. }
  27. #endif