summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP/EC/EC.idl
blob: d2096e707d85fc8efddee0d8e81362ea05c467e0 (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
// $Id$
//=============================================================================
/**
 * @file EC.idl
 *
 * Definition of events, and common interfaces used in the BasicSP module.
 *
 * @author Balachandran Natarajan <nanbor@cs.wustl.edu>
 */
//=============================================================================

#ifndef CIAO_EC_IDL
#define CIAO_EC_IDL

#include "../BasicSP.idl"

module BasicSP
{
  component EventChannel {
    publishes TimeOut timeOut;
  };

  home EventChannelHome manages EventChannel
    {
    };
};
#endif /*CIAO_EC_IDL*/