summaryrefslogtreecommitdiff
path: root/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
blob: 31d6d0c9c22af782d9b9b91b0d4e5302b4f76af7 (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: { qml_type: "UiProcessingService" }
interface ProcessingService {

    string lastMessage;

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