Changeset 3255
- Timestamp:
- 02/23/08 00:16:10 (9 months ago)
- Files:
-
- trunk/example/text/xmlpath.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/example/text/xmlpath.d
r3247 r3255 11 11 import tango.time.StopWatch; 12 12 import tango.text.xml.Document; 13 import tango.text.xml.Xml Query;13 import tango.text.xml.XmlPath; 14 14 import tango.text.xml.XmlPrinter; 15 15 … … 41 41 // time some queries 42 42 StopWatch w; 43 auto query = new Xml Query!(char);43 auto query = new XmlPath!(char); 44 44 auto set = query(doc); 45 45 … … 71 71 } 72 72 73 void result (char[] msg, double time, Xml Query!(char).NodeSet set)73 void result (char[] msg, double time, XmlPath!(char).NodeSet set) 74 74 { 75 75 Stdout.newline.formatln("{} {}", time, msg);












