summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl
blob: 9c92a309fbb2f7ebb2bb5547b5d7faa72c3dc116 (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
//$Id$:
/**
 * @file ReceiverEI.idl
 *
 * @author Tao Lu <lu@dre.vanderbilt.edu>
 */

#ifndef RECEIVEREI_IDL
#define RECEIVERET_IDL


#include "ReceiverE.idl"

module Hello
{
  //Note since the Receiver only uses the message interface, there won't
  //be any inheritance from CCM_message.
  local interface Receiver_Exec :
    CCM_Receiver,
    Components::SessionComponent
    {
    };

};
#endif /*RECEIVEREI_IDL*/