Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3255

Show
Ignore:
Timestamp:
02/23/08 00:16:10 (9 months ago)
Author:
kris
Message:

renamed to XmlPath?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/example/text/xmlpath.d

    r3247 r3255  
    1111import tango.time.StopWatch; 
    1212import tango.text.xml.Document; 
    13 import tango.text.xml.XmlQuery
     13import tango.text.xml.XmlPath
    1414import tango.text.xml.XmlPrinter; 
    1515 
     
    4141        // time some queries 
    4242        StopWatch w; 
    43         auto query = new XmlQuery!(char); 
     43        auto query = new XmlPath!(char); 
    4444        auto set = query(doc); 
    4545 
     
    7171} 
    7272 
    73 void result (char[] msg, double time, XmlQuery!(char).NodeSet set) 
     73void result (char[] msg, double time, XmlPath!(char).NodeSet set) 
    7474{ 
    7575        Stdout.newline.formatln("{} {}", time, msg);