summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple/Multiple.idl
blob: e669d7f03454044dc1516101cc0297cc342e098d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//$Id$

/* ============================================================================
//
// = LIBRARY
//    TAO/tests/Multiple
//
// = FILENAME
//    Multiple.idl
//
// = DESCRIPTION
//    IDL definition of a Diamond shaped hierarchy
//    of IDL interfaces. This Diamond shaped hierarchy
//    is used for testing the collocation.
//    The hierarchy used is decipted in the following
//    figure.
//
//                      Top
//                     /   \
//                 Left     Right
//                     \   /
//                     Bottom
//
// = AUTHOR
//     Angelo Corsaro <corsaro@cs.wustl.edu>
//
// ============================================================================
*/


module _Multiple
{

  interface Top
  {
    string top_quote ();

    oneway void shutdown ();
  };

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

  interface Right : Top
  {
    string right_quote ();
  };

  interface Bottom : Left, Right
  {
    string bottom_quote ();
  };

};