summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/Basic/ICBasic.idl
blob: a5d5897f8cc6921fe5889e3dec40ec2d0181abc2 (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
// $Id$
/**
 * @file ICBasic.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests implied idl functionality of basic components.
 */

#include <Components.idl>

module Basic
{
  component Foo
    {
    };

  interface Bar
    {
      Foo test_op_1 ();
      void test_op_2 (in Foo f);
      void test_op_3 (out Foo f);
    };


};