aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/Globals.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Globals.qml')
-rw-r--r--src/shared/Globals.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/shared/Globals.qml b/src/shared/Globals.qml
new file mode 100644
index 0000000..6531a1e
--- /dev/null
+++ b/src/shared/Globals.qml
@@ -0,0 +1,10 @@
+pragma Singleton
+import QtQuick 2.0
+
+QtObject {
+ readonly property string stringProp: "stringValue"
+ readonly property int intProp: 10
+ readonly property real realProp: 4.5
+ readonly property color colorProp: "green"
+ readonly property bool boolProp: true
+}