summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/adding/example.qml
blob: b8fee2619133522abbcaeb9a1b2a784771a26ec0 (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6
import People 1.0

// ![0]
Person {
    name: "Bob Jones"
    shoeSize: 12
}
// ![0]