C++ TinyXml

Started by
1 comment, last by Kova78 15 years, 2 months ago
Hi all, sorry for my poor english :( I have an xml file like this: <root> <Description="test"> <text>1234</text> <age>4</age> </Description> <Collection> <item>5678</item> </Collection> </root> I want to do that: "When I'm in the <Description> element I want to jump immediatly to <Collection> element without to process <text> and <age> elements". How can i do that? Thanks a lot ;)
Advertisement
call "NextSibling()" method
MSN:xoyojank#live.com
Quote:Original post by xoyojank
call "NextSibling()" method


Thanks...I'm new of tinyxml and on the net there aren't many examples :(
Bye.

This topic is closed to new replies.

Advertisement