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

module Diamond
{
  interface Top
    {
      string shape ();
    };

  interface Left : Top
    {
      string color ();
    };

  interface Right : Top
    {
      long width ();
    };

  interface Buttom : Left, Right
    {
      string name ();
    };
};