summaryrefslogtreecommitdiff
path: root/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
blob: 9ff028ac26f04ad64a1b73c12003638ee4767363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Test module
 */
//! [0]
module Example.IVI.RemoteModule 1.0;
//! [0]
/**
 * The ProcessingService provides a QML interface to a service doing
 * all sorts of heavy processing
 */
//! [1]
@config: { qml_type: "UiProcessingService" }
interface ProcessingService {

    string lastMessage;

    int process(string data);
}
//! [1]