XmlParseParameter.hpp 552 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-17
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #ifndef LS_STD_XML_PARSE_DATA_HPP
  10. #define LS_STD_XML_PARSE_DATA_HPP
  11. #include "XmlNode.hpp"
  12. #include <cstdint>
  13. #include <memory>
  14. namespace ls::std::io
  15. {
  16. struct XmlParseParameter // TODO: turn to class, rather than keeping it as struct
  17. {
  18. public:
  19. uint8_t level{};
  20. ::std::shared_ptr<ls::std::io::XmlNode> node{};
  21. };
  22. }
  23. #endif