aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/core/ivigenerator/org.example.echo.simulator.qface
blob: ff88ce1e55b34d1753ebf87e98cbae504bc634aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * module
 */
module org.example.echo.simulator 1.0

/**
 * @brief the brief
 * @description the description
 * continues {@link http://qt.io}
 * @deprecated
 * @see org.example.echo.Echo
 * @see org.example
 * @see http://qt.io
 * @anything hello
 */
@config: {"id": "org.foo.id.1.0"}
interface Echo {
    /**
     * @brief brief message
     * @details long message
     *
     * @param msg the message
     * @return the echo
     */
    readonly string lastMessage;
    int intValue;
    string stringValue;

    string echo(string msg);
    string id();

    signal valueChanged(int value);
}

@config: {"id": "org.foo.idz.1.0", "zoned": true}
interface EchoZoned {
    /**
     * @brief brief message
     * @details long message
     *
     * @param msg the message
     * @return the echo
     */
    readonly string lastMessage;
    int intValue;
    string stringValue;

    string echo(string msg);
    string id();

    signal valueChanged(int value);
}