summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl')
-rw-r--r--CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl35
1 files changed, 0 insertions, 35 deletions
diff --git a/CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl b/CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl
deleted file mode 100644
index d8c3a1c77d0..00000000000
--- a/CIAO/connectors/ami4ccm/examples/Hello/Base/Hello.idl
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef HELLO_IDL
-#define HELLO_IDL
-
-#pragma ciao lem "Base/HelloE.idl"
-#pragma ciao ami4ccm interface "Hello::MyFoo"
-#pragma ciao lem "Base/HelloAE.idl"
-#pragma ciao ami4ccm idl "Base/HelloA.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
-