summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl')
-rw-r--r--TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl b/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
new file mode 100644
index 00000000000..a045d5540d8
--- /dev/null
+++ b/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
@@ -0,0 +1,22 @@
+// $Id$
+
+interface A
+{
+ string method1 ();
+};
+
+interface intB : A
+{
+ string method2 ();
+};
+
+interface C : A
+{
+ string method3 ();
+};
+
+interface D : intB, C
+{
+ string method4 ();
+};
+