summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Events/Abstract/Abstract.idl
blob: cbd81d4d8b6d8eb8a38b9d193e4864afe44f9585 (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
// $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
  {
  };
  */
  
};