summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3/Events/Regular/Regular.idl
blob: f9169026e88af8e5fd231c43c82592eee66d443c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// $Id$
/**
 * @file Regular.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests the compilation of regular  event types.
 */

#include <Components.idl>

module RegularEvents
{
  eventtype foo
    {
    };
  
  eventtype bar
    {
    };
  
  eventtype InhFoo : foo
    {
    };

  /* @@ 
   * TAO_IDL cannot handle custom yet.  
  custom eventtype custom_foo
    {
    };
  
  custom eventtype custom_InhFoo : foo
    {
    };
  */

  eventtype Baz
  {
    long test_op ();
    void test_op_a (in long foo, out float bar);
    InhFoo test_op_b ();
  };
  
  
};