summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl
blob: e1bce50fc2f95ad21072d8d2ba9c13633c9d3a96 (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
// $Id$
/**
 * @file Inheritance.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 * 
 * Tests the compilation of Home inheritance.
 */

#include <Components.idl>

module HomeInheritance
{
  interface foo_interface 
    {
    };
  
  component Foo supports foo_interface
    {
    };
  
  home FooHome manages Foo
    {
    };
  
  component Bar
    {
    };
  
  home BarHome : FooHome manages Bar
    {
    };
  
};