summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3/Homes/Finder/Finder.idl
blob: 5057b162fc331ab2d69841471cf7d08da26f765f (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
// $Id$
/**
 * @file Finder.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests the compilation of Homes with Factorys.
 */

#include <Components.idl>

module FactoryHomes
{
  exception foo_exception
    {
    };
  
  interface foo_interface 
    {
    };
  
  component Foo supports foo_interface 
    {
    };
  
  home FooHome manages Foo
    {
      factory FooFinder (in string foo, in short bar) raises (foo_exception);
    };
  
};