summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl')
-rw-r--r--modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl b/modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl
new file mode 100644
index 00000000000..9b71378fbae
--- /dev/null
+++ b/modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl
@@ -0,0 +1,30 @@
+// $Id$
+
+module CCM_AMI
+{
+ struct InternalException
+ {
+ long id;
+ string error_string;
+ };
+
+ exception InternalError
+ {
+ InternalException ex;
+ };
+
+ // Sender/Receiver interface
+ interface MyFoo
+ {
+ long foo (in string in_str, out string answer)
+ raises (InternalError);
+ void hello (out long answer)
+ raises (InternalError);
+ };
+
+ interface MyInterface
+ {
+ float do_something_with_something (in short something)
+ raises (InternalError);
+ };
+};