diff options
Diffstat (limited to 'tests/remotetest.idl')
-rw-r--r-- | tests/remotetest.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/remotetest.idl b/tests/remotetest.idl new file mode 100644 index 0000000..6301077 --- /dev/null +++ b/tests/remotetest.idl @@ -0,0 +1,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); +}; |