summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview/ContactModel.qml
blob: b930c060602d50baf8ecaba4f8a6e225f97dec48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//![0]
import Qt 4.7

ListModel {
    ListElement {
        name: "Bill Smith"
        number: "555 3264"
    }
    ListElement {
        name: "John Brown"
        number: "555 8426"
    }
    ListElement {
        name: "Sam Wise"
        number: "555 0473"
    }
}
//![0]