XMLParseData.hpp 461 B

123456789101112131415161718192021222324
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-17
  6. * Changed: 2020-11-06
  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. struct XMLParseData {
  16. uint8_t level {};
  17. std::shared_ptr<ls_std::XMLNode> node {};
  18. };
  19. }
  20. #endif