summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
blob: a045d5540d8b6a5ee86912a142954e77be143a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

interface A
{
  string method1 ();
};

interface intB : A
{
  string method2 ();
};

interface C : A
{
  string method3 ();
};

interface D : intB, C
{
  string method4 ();
};