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

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