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

// ![0]
BirthdayParty {
    celebrant: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }

    Boy { name: "Joan Hodges" }
    Boy { name: "Jack Smith" }
    Girl { name: "Anne Brown" }
}
// ![0]