blob: 087f14f4c238774323e86727978ca5028e615326 (
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
|
/** module */
module org.example.echo 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
*
* continued description
*/
interface Echo {
/**
* @brief brief message
* @details long message
*
* @param msg the messsage
* @return the echo
*/
string echo(string msg);
}
|