aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/moduleapi/qobjectModuleApiCaching.qml
blob: 56a55e4e9b94463582bc8cf21157a3b3802b6874 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

import Qt.test 1.0 as QtTest                                      // module API installed into existing uri
import Qt.test.qobjectApiParented 1.0 as QtTestParentedQObjectApi // qobject (with parent) module API installed into a new uri

QtObject {
    property int existingUriTest: QtTest.qobjectTestProperty
    property int qobjectParentedTest: QtTestParentedQObjectApi.qobjectTestProperty
}