summaryrefslogtreecommitdiffstats
path: root/examples/interfaceframework/qface-remote/example-remote.qface
blob: 4354e9e79a7b529cea68f17d40be2c3d540272a1 (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.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]