summaryrefslogtreecommitdiff
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.qface5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface b/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
index 444163e..af45423 100644
--- a/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
+++ b/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
@@ -1,12 +1,14 @@
/**
* Test module
*/
+//! [0]
module Example.IVI.Remote 1.0;
-
+//! [0]
/**
* The ProcessingService provides a QML interface to a service doing
* all sorts of heavy processing
*/
+//! [1]
@config: { id: "example.qtivi.ProcessingService/1.0", qml_type: "UiProcessingService" }
interface ProcessingService {
@@ -14,3 +16,4 @@ interface ProcessingService {
int process(string data);
}
+//! [1]