123456789101112131415161718192021222324252627 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-10-18
- * Changed: 2020-11-26
- *
- * */
- #ifndef LS_STD_XML_PARSER_MOCK_HPP
- #define LS_STD_XML_PARSER_MOCK_HPP
- #include "XMLParser.hpp"
- namespace ls_std {
- class XMLParserMock : public XMLParser {
- public:
- XMLParserMock();
- ~XMLParserMock() override = default;
- static std::pair<std::string, std::string> readAttribute(const ls_std::byte_field &_data);
- static std::list<std::pair<std::string, std::string>> readAttributes(ls_std::byte_field _data);
- };
- }
- #endif
|