summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
blob: 04e8b65438736e706fe19b13a1da5f7d29b98f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
interface A
{
  string method1 ();
};

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

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

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