Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / include_remote.qml
1 import QtQuick 1.0
2 import "include_remote.js" as IncludeTest
3
4 QtObject {
5     property bool done: false
6     property bool done2: false
7
8     property bool test1: false
9     property bool test2: false
10     property bool test3: false
11     property bool test4: false
12     property bool test5: false
13
14     property bool test6: false
15     property bool test7: false
16     property bool test8: false
17     property bool test9: false
18     property bool test10: false
19
20     Component.onCompleted: IncludeTest.go();
21 }