summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
blob: df5e183c1da1c1e7521fbfbc85f1ba087ef5f2f8 (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 B : A
{
  string method2 ();
};

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

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