summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/properties/example.qml
blob: 63bb77b3e5a2cf37c3b8ac3a875fc21456e55683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ![0]
BirthdayParty {
    celebrant: Person {
        name: "Bob Jones"
        shoeSize: 12
    }
    guests: [
        Person { name: "Joan Hodges" },
        Person { name: "Jack Smith" },
        Person { name: "Anne Brown" }
    ]
}
// ![0]