blob: 2739c5a79b21fa557b82802823516bba9809cc69 (
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
|
//=============================================================================
/**
* @file Multiple.idl
*
* $Id$
*
* 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 ();
};
};
|