Qt IVI Generator Remote Objects Example

/**
 * Test module
 */
module Example.IVI.Remote 1.0;
/**
 * The ProcessingService provides a QML interface to a service doing
 * all sorts of heavy processing
 */
@config: { qml_type: "UiProcessingService" }
interface ProcessingService {

    string lastMessage;

    int process(string data);
}