aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickxmllistmodel/data/unique.qml
blob: 322a2e4e5c6476ac9b7dc8c32ae6d5e75628cbbe (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0
import QtQuick.XmlListModel 2.0

XmlListModel {
    source: "model.xml"
    query: "/Pets/Pet"
    XmlRole { name: "name"; query: "name/string()" }
    XmlRole { name: "name"; query: "type/string()" }
}