summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3/ImpliedIDL/Homes/Homes.idl
blob: 3440458b4b26a64025afd4443adb00a896e5fc7f (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
// $Id$
/**
 * @file Homes.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 * 
 * Tests equivalent IDL semantics for Homes
 */

#include <Components.idl>

module ImplicitHomes
{
  component Foo
    {
    };
  
  home FooHome manages Foo
    {
    };
  /*
  interface test
    {
      FooHomeExplicit test_op ();
      FooHomeImplicit test_op_1 ();
      FooHome test_op_2 ();
    };
  */
};