/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-05-14 * Changed: 2026-06-23 * * */ #ifndef LS_STD_IO_TEST_DATA_FACTORY_HPP #define LS_STD_IO_TEST_DATA_FACTORY_HPP #include #include namespace test::io { class TestDataFactory { public: TestDataFactory(); ~TestDataFactory(); [[nodiscard]] static ::std::shared_ptr createXmlContent(); }; } #endif