Home · All Namespaces · All Classes · Main Classes · Grouped Classes · Modules · Functions |
declare variable $where as xs:string := string($fileTree/@filePath); <html> <head> <title>All cpp files in: {$where}</title> </head> <body> <p>The following cpp-files were found in {$where}, sorted by file size:</p> <ul> { for $file in $fileTree//file[@suffix = "cpp"] order by xs:integer($file/@size) return <li> {string($file/@fileName)}, size: {string($file/@size)} </li> } </ul> </body> </html>
Copyright © 2008 Nokia | Trademarks | Qt 4.4.3 |