summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/inherit.idl
blob: a96fe16957012a6bfc435ba9b82ff462e6288576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
};