summaryrefslogtreecommitdiff
path: root/examples/ivicore/qface-ivi-remote/example-ivi-remote.qface
blob: 444163e8e14a5a3c59a9d144bf2315a2d3b1c551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
}