summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/inherit.idl
blob: 390f8d7e98eb80e5a557ac0a83508136c9627b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

interface one {
    void op_one();
};
interface two : one {
    void op_two();
};
interface three : one {
    void op_three();
};
interface four : two, three {
    void op_four();
};

interface five : four, three, two {
    void op_five();
};