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

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