Parses the next tag at the given depth.
A pointer to the tag structure that will be populated after parsing every tag.
Tag tag; SdlWalker walker = SdlWalker(&tag, sdl); while(walker.pop()) { // use tag to process the current tag auto depth = tag.childrenDepth(); while(walker.pop(depth)) { // process tag again as a child tag } }
Assists in walking an SDL tree which supports the StAX method of parsing.