Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeqt / data / createComponent_lib.qml
1 import QtQuick 1.0
2 import "createComponent_lib.js" as Test
3
4 Item {
5     property int status: Component.Null
6     property int readValue: 0
7
8     Component.onCompleted: {
9         status = Test.loadComponent()
10         readValue = Test.createComponent().test;
11     }
12 }