]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - src/tests/sharead_lib/test_obj.idl
forb: First implementation of forbrun
[frescor/forb.git] / src / tests / sharead_lib / 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 };