summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Homes/Basic/Basic.idl
blob: 47705a7bdb2a30adbe782b08538f9520570209a5 (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
    {
    };

};