summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/inherit.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/idl_specs/inherit.idl')
-rw-r--r--TAO/TAO_IDL/idl_specs/inherit.idl19
1 files changed, 0 insertions, 19 deletions
diff --git a/TAO/TAO_IDL/idl_specs/inherit.idl b/TAO/TAO_IDL/idl_specs/inherit.idl
deleted file mode 100644
index 390f8d7e98e..00000000000
--- a/TAO/TAO_IDL/idl_specs/inherit.idl
+++ /dev/null
@@ -1,19 +0,0 @@
-// $Id$
-
-interface one {
- void op_one();
-};
-interface two : one {
- void op_two();
-};
-interface three : one {
- void op_three();
-};
-interface four : two, three {
- void op_four();
-};
-
-interface five : four, three, two {
- void op_five();
-};
-