]> rtime.felk.cvut.cz Git - frescor/frsh-forb.git/blob - src/forb/src/forbrun/tests/test_obj.idl
0edea5d185b306b4a7b1b6f4c1bd25495ead8986
[frescor/frsh-forb.git] / src / forb / src / forbrun / tests / test_obj.idl
1 interface test_obj {
2         // Adds some number the value @a val
3         long add(in long val);
4         // Adds some number the value @a val by calling @a add method of indirect_obj
5         long add_indirect(in test_obj indirect_obj, in long val);
6 };