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

// ![0]
BirthdayParty {
    celebrant: Person {
        name: "Bob Jones"
        shoeSize: 12
    }
    guests: [
        Person { name: "Joan Hodges" },
        Person { name: "Jack Smith" },
        Person { name: "Anne Brown" }
    ]
}
// ![0]