aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ivicore/qface-ivi-remote/example-ivi-remote.qface')
-rw-r--r--examples/ivicore/qface-ivi-remote/example-ivi-remote.qface16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface b/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
new file mode 100644
index 0000000..444163e
--- /dev/null
+++ b/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
@@ -0,0 +1,16 @@
+/**
+ * Test module
+ */
+module Example.IVI.Remote 1.0;
+
+/**
+ * The ProcessingService provides a QML interface to a service doing
+ * all sorts of heavy processing
+ */
+@config: { id: "example.qtivi.ProcessingService/1.0", qml_type: "UiProcessingService" }
+interface ProcessingService {
+
+ string lastMessage;
+
+ int process(string data);
+}