summaryrefslogtreecommitdiff
path: root/examples/qtcpp/interface/echo.qdl
blob: d308285cd5321c628e47dab32a892c3f99674fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module org.example 1.0;

/*!
 * Provide a simple echo service.
 */
interface Echo {
    /*!
     * The last echo message.
     */
    string currentMessage;
    /*!
     * Returns the passed in message
     */
    string echo(string message);
}