]> rtime.felk.cvut.cz Git - frescor/forb.git/blobdiff - tests-idl/interface.idl
Object references as out parameters are now supported as well
[frescor/forb.git] / tests-idl / interface.idl
index 321262523fbe7a1aec75f53242322d23348348eb..f2a674a49b5324366e02025134cb2e7823594502 100644 (file)
@@ -10,7 +10,7 @@ interface myinterface {
        void square(inout long r);
        void message(in string msg);
        void last_message(out string msg);
-       void struct_method(in struct_t s);
-       void obj_method(in myinterface mi);
-//     void mytype_method(in mytype mt);
+       void struct_method(in struct_t s, out struct_t ss);
+       void obj_method(in myinterface mi, out myinterface mo);
+       void mytype_method(in mytype mt, out mytype mtt);
 };