summaryrefslogtreecommitdiff
path: root/trunk/CIAO/tests/IDL3/Homes/Basic/Basic.idl
blob: 3d9f4c5162e58b2b0476aa0801e35d7ed6088d58 (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
// $Id$
/**
 * @file Basic.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests the compileability of basic Home types.
 */

#include <Components.idl>

module BasicHomes
{
  
  interface foo_interface {};
  
  component Foo supports foo_interface {};
  
  home FooHome manages Foo
    {
    };
  
  
  interface bar_interface {};
  
  component Bar supports bar_interface {};
  
  home BarHome supports foo_interface manages Bar
    {
    };
  
};