summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/Receptacles/ICReceptacles.idl
blob: 7af66e50e8cc43edb9cf7f8ac5aa5b30d80dcb0e (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 ICReceptacles.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 * 
 * Tests equivalent idl for receptacles.
 */
#include <Components.idl>

module EquivReceptacles
{
  interface foo_interface
    {
    };
  
  component Foo 
    {
      uses multiple foo_interface foo_recep;
    };
  
  /**
  interface bar
    {
      Foo::foo_recepConnections get_seq ();
      Foo::foo_recepConnection get_struct ();
    };
   */
};