/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-15 * Changed: 2023-02-16 * * */ #ifndef LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP #define LS_STD_SECTION_PAIR_SECTION_PROVIDER_HPP #include #include #include namespace test::io { class SectionPairSectionProvider { public: SectionPairSectionProvider(); ~SectionPairSectionProvider(); static ::std::shared_ptr createSectionWithSandraExample(); static ::std::shared_ptr createSectionWithTomExample(); static ls::std::core::type::byte_field createSerializedSectionWithSandraExample(); static ls::std::core::type::byte_field createSerializedSectionWithTomExample(); }; } #endif