12345678910111213141516171819202122232425262728 |
- #ifndef LS_STD_XML_PARSE_DATA_HPP
- #define LS_STD_XML_PARSE_DATA_HPP
- #include "XmlNode.hpp"
- #include <cstdint>
- #include <memory>
- namespace ls::std::io
- {
- struct XmlParseParameter // TODO: turn to class, rather than keeping it as struct
- {
- public:
- uint8_t level{};
- ::std::shared_ptr<ls::std::io::XmlNode> node{};
- };
- }
- #endif
|