blob: 63010773b590e5e7cd2142a8a0afb28346287d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
interface RemoteTest {
readonly attribute long fortyTwo;
object createObject(string name);
oneway void die();
};
interface Calculator {
long add(long a, long b);
string concat(string a, string b);
};
|