summaryrefslogtreecommitdiffstats
path: root/examples/declarative/cppextensions/referenceexamples/default/example.qml
blob: c0f3cbb54ac167ab852dd2ce105a83085d1372f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import People 1.0

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

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