XmlParseParameter.hpp 593 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-17
  6. * Changed: 2022-07-01
  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. #include <ls_std/os/dynamic_goal.hpp>
  15. namespace ls
  16. {
  17. namespace std
  18. {
  19. namespace io
  20. {
  21. struct DYNAMIC_GOAL XmlParseParameter
  22. {
  23. uint8_t level{};
  24. ::std::shared_ptr<ls::std::io::XmlNode> node{};
  25. };
  26. }
  27. }
  28. }
  29. #endif