summaryrefslogtreecommitdiffstats
path: root/examples/declarative/plugins/plugins.qml
blob: 44b552b669089ee0a006f5b5c0cba773f22d1547 (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 (files/Clock.qml)

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

    hours: time.hour
    minutes: time.minute
}