Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Community » U++ community news and announcements » Two small XmlParser improvements
Two small XmlParser improvements [message #41663] Wed, 08 January 2014 11:29
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Instead of

if(p.Tag("foo")) { DoSomething(); } else Skip();

we can now write

if(p.TagElseSkip("foo")) { DoSomething(); }

instead of

while(!p.End()) if(p.Tag("foo")) { DoSomething(); } else Skip();

we can now write

while(p.LoopTag("foo")) { DoSomething(); }

Previous Topic: WebSocket support
Next Topic: Hapy new year 2014
Goto Forum:
  


Current Time: Thu Mar 28 22:52:58 CET 2024

Total time taken to generate the page: 0.01298 seconds