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