summaryrefslogtreecommitdiff
path: root/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
blob: af45423dda9e9e7f93312c09ab8e80d5dc5ca4e3 (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.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 {

    string lastMessage;

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