summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/ImpliedIDL/Homes/Homes.idl
blob: 8c781e8fea4e76b181ef50b4d8af482fa5aa39e2 (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 ();
    };
  */
};