summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Inherited_Operation/InheritedOp.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Inherited_Operation/InheritedOp.idl')
-rw-r--r--TAO/tests/IDL_Inherited_Operation/InheritedOp.idl33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Inherited_Operation/InheritedOp.idl b/TAO/tests/IDL_Inherited_Operation/InheritedOp.idl
new file mode 100644
index 00000000000..b8d54bafcb2
--- /dev/null
+++ b/TAO/tests/IDL_Inherited_Operation/InheritedOp.idl
@@ -0,0 +1,33 @@
+//$Id$
+
+#ifndef INHERITED_OP_IDL
+#define INHERITED_OP_IDL
+
+module Outer
+{
+ module Inner
+ {
+ interface Base
+ {
+ void BaseOp ();
+ };
+ };
+};
+
+module Outer
+{
+ module Inner
+ {
+ interface Base;
+ };
+};
+
+module Outer
+{
+ interface Derived : Inner::Base
+ {
+ void shutdown ();
+ };
+};
+
+#endif /* INHERITED_OP_IDL */