summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl
blob: c70b608ca4d17404f324a606aa5c1a3fbcf4bed1 (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
// $Id$
//=============================================================================
/**
 * @file RTEventService.idl
 *
 * Definition of component and home that will provide event channels.
 *
 * @author George Edwards <g.edwards@vanderbilt.edu>
 */
//=============================================================================

#include "../BasicSP.idl"

#ifndef CIAO_RTEVENTSERVICE_IDL
#define CIAO_RTEVENTSERVICE_IDL


module BasicSP
{

  component RTEventService
    {
      provides RtecEventChannelAdmin::EventChannel rt_event_channel;
    };

  home RTEventServiceHome manages RTEventService
    {
    };

};

#endif /* CIAO_RTEVENTSERVICE_IDL*/