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

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