/** * 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]