summaryrefslogtreecommitdiffstats
path: root/basicsuite/Launcher Settings/NetworkController.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Launcher Settings/NetworkController.qml')
-rw-r--r--basicsuite/Launcher Settings/NetworkController.qml21
1 files changed, 21 insertions, 0 deletions
diff --git a/basicsuite/Launcher Settings/NetworkController.qml b/basicsuite/Launcher Settings/NetworkController.qml
new file mode 100644
index 0000000..3ec36ac
--- /dev/null
+++ b/basicsuite/Launcher Settings/NetworkController.qml
@@ -0,0 +1,21 @@
+import QtDroid.Utils 1.0
+import QtQuick 2.0
+
+QtObject {
+
+ function getIPAddress()
+ {
+ return DroidUtils.getIPAddress()
+ }
+
+ function getHostname()
+ {
+ return DroidUtils.getHostname()
+ }
+
+ function setHostname(value)
+ {
+ return DroidUtils.setHostname(value)
+ }
+
+}