summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/Events/Abstract/Abstract.idl
blob: 15eb50971b3347862d39c5610d6223af4e708156 (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
// $Id$
/**
 * @file Abstract.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests the compilation of abstract events.
 */

#include <Components.idl>

module AbstractEvents
{
  abstract eventtype foo_event
    {
    };

  abstract eventtype InhFoo_event : foo_event
    {
    };
  
  abstract eventtype bar_event
    {
    };
  
  abstract eventtype foobar_event : foo_event, bar_event
    {
    };

  // test event multiple inheretance
  
  eventtype concrete_foo
  {
  };
  
  eventtype concrete_foobar : concrete_foo, foo_event
  {
  };
};