| 123456789101112131415161718192021222324252627282930 |
- /*
- * 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 <ls-std/ls-std-io.hpp>
- #include <memory>
- namespace test::io
- {
- class TestDataFactory
- {
- public:
- TestDataFactory();
- ~TestDataFactory();
- [[nodiscard]] static ::std::shared_ptr<ls::standard::io::XmlNode> createXmlContent();
- };
- }
- #endif
|