XmlParseParameter.hpp 466 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-17
  6. * Changed: 2021-05-02
  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_std
  15. {
  16. struct XmlParseParameter
  17. {
  18. uint8_t level{};
  19. std::shared_ptr<ls_std::XmlNode> node{};
  20. };
  21. }
  22. #endif