summaryrefslogtreecommitdiffstats
path: root/examples/declarative/cppextensions/plugins/plugins.qml
blob: 449cd9a905eb4f30ed708d3a82e274627d51e541 (plain)
1
2
3
4
5
6
7
8
9
10
11
import com.nokia.TimeExample 1.0 // import types from the plugin

Clock { // this class is defined in QML (com/nokia/TimeExample/Clock.qml)

    Time { // this class is defined in C++ (plugin.cpp)
        id: time
    }

    hours: time.hour
    minutes: time.minute
}