aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/examples/Stack/stack.idl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/orber/examples/Stack/stack.idl')
-rw-r--r--lib/orber/examples/Stack/stack.idl27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/orber/examples/Stack/stack.idl b/lib/orber/examples/Stack/stack.idl
deleted file mode 100644
index f21f93917b..0000000000
--- a/lib/orber/examples/Stack/stack.idl
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _STACK_IDL
-#define _STACK_IDL
-
-module StackModule {
-
- exception EmptyStack {};
-
- interface Stack {
-
- long pop() raises(StackModule::EmptyStack);
-
- void push(in long value);
-
- void empty();
-
- };
-
- interface StackFactory {
-
- StackModule::Stack create_stack();
- void destroy_stack(in StackModule::Stack s);
-
- };
-
-};
-
-#endif