1234567891011121314151617181920212223242526272829 |
- #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();
- static ::std::shared_ptr<ls::std::io::XmlNode> createXmlContent();
- };
- }
- #endif
|