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.idl31
1 files changed, 31 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..fc1bef18139
--- /dev/null
+++ b/modules/CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl
@@ -0,0 +1,31 @@
+// $Id$
+
+#ifndef HELLO_IDL
+#define HELLO_IDL
+
+module Hello
+{
+ exception InternalError
+ {
+ long id;
+ string error_string;
+ };
+
+ // Sender/Receiver interface
+ interface MyFoo
+ {
+ long foo (in string in_str, out string answer)
+ raises (InternalError);
+ void hello (out long answer)
+ raises (InternalError);
+
+ attribute short rw_attrib
+ getraises (InternalError)
+ setraises (InternalError);
+
+ readonly attribute short ro_attrib
+ raises (InternalError);
+ };
+};
+
+#endif