summaryrefslogtreecommitdiffstats
path: root/examples/interfaceframework/remote/example-remote.qface
blob: 859a635a0017356384d0972ace35601a35de9172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Test module
 */
//! [2]
@config_server_qtro: { useGeneratedMain: true }
//! [2]
//! [0]
module Example.If.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]