summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/default/example.qml
blob: 051a9d2fdb3c55ecb7fcacae7bc04b79db95d408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt 4.6
import People 1.0

// ![0]
BirthdayParty {
    celebrant: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }

    Boy { name: "Joan Hodges" }
    Boy { name: "Jack Smith" }
    Girl { name: "Anne Brown" }
}
// ![0]