summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl')
-rw-r--r--modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl29
1 files changed, 27 insertions, 2 deletions
diff --git a/modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl b/modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl
index f5a32b6b461..22c7415daa1 100644
--- a/modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl
+++ b/modules/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl
@@ -6,7 +6,9 @@
#pragma ciao lem "HelloE.idl"
#pragma ciao ami4ccm interface "Hello::MyFoo"
#pragma ciao ami4ccm interface "Hello::MyDerived"
+#pragma ciao ami4ccm interface "Hello::MyBar"
#pragma ciao ami4ccm interface "Foo::MyFoo"
+#pragma ciao ami4ccm interface "Foo::MyBar"
module Hello
{
@@ -39,15 +41,38 @@ module Hello
long do_someting (in string str);
attribute long my_attribute;
};
+
+ interface MyBar : MyDerived
+ {
+ double bar_return (in string in_str, in string answer)
+ raises (InternalError);
+ void bye (out long answer, out double db)
+ raises (InternalError);
+ attribute short rw_bar_attrib
+ getraises (InternalError)
+ setraises (InternalError);
+ readonly attribute short ro_bar_attrib
+ raises (InternalError);
+ };
};
module Foo
{
+ struct TestTopic
+ {
+ string key;
+ long x;
+ };
+
interface MyFoo
{
- long myop (in string str);
+ long myop (in TestTopic topic);
+ };
+
+ interface MyBar : MyFoo
+ {
+ TestTopic mybarop (in string str, in long lg, out double db);
};
};
#endif
-