/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-17 * Changed: 2023-02-17 * * */ #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_PROVIDER_HPP #define LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_PROVIDER_HPP #include #include #include namespace test::io { class SerializableSectionPairRowProvider { public: SerializableSectionPairRowProvider(); ~SerializableSectionPairRowProvider(); static ::std::shared_ptr createListValueForMarshal(const ::std::string &_newLine); static ::std::shared_ptr createListValueForUnmarshal(const ::std::string &_newLine); static ::std::shared_ptr createSingleValueForMarshal(const ::std::string &_newLine); static ::std::shared_ptr createSingleValueForUnmarshal(const ::std::string &_newLine); }; } #endif