Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / include_shared.qml
1 import QtQuick 1.0
2 import "include_shared.js" as IncludeTest
3
4 QtObject {
5     property int test0: 0
6     property bool test1: false
7     property bool test2: false
8     property bool test2_1: false
9     property bool test3: false
10     property bool test3_1: false
11
12     Component.onCompleted: { 
13         IncludeTest.go(); 
14         test0 = IncludeTest.value
15         test1 = IncludeTest.test1
16         test2 = IncludeTest.test2
17         test2_1 = IncludeTest.test2_1
18         test3 = IncludeTest.test3
19         test3_1 = IncludeTest.test3_1
20     }
21 }
22