XmlParseParameter.hpp 542 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-17
  6. * Changed: 2022-05-11
  7. *
  8. * */
  9. #ifndef LS_STD_XML_PARSE_DATA_HPP
  10. #define LS_STD_XML_PARSE_DATA_HPP
  11. #include <cstdint>
  12. #include <memory>
  13. #include "XmlNode.hpp"
  14. namespace ls
  15. {
  16. namespace std
  17. {
  18. namespace io
  19. {
  20. struct XmlParseParameter
  21. {
  22. uint8_t level{};
  23. ::std::shared_ptr<ls::std::io::XmlNode> node{};
  24. };
  25. }
  26. }
  27. }
  28. #endif