summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/RTCCM/Priority_Test/Workers/WorkerEI.idl
blob: d219d91fbb4dcd1d2585e5ce967142043b8f849d (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
// $Id$

/**
 * @file WorkerEI.idl
 *
 * Definition of the Worker component implementation.
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */

#ifndef WORKEREI_IDL
#define WORKEREI_IDL

#include "WorkerE.idl"

module Priority_Test
{
  /**
   * @interface Worker_Exec
   *
   * The actually Worker executor inherits from both CCM_Worker and
   * CCM_position interfaces as a monolithic implementation.
   */
  local interface Worker_Exec :
    CCM_Worker,
    CCM_Common_Ops,
    Components::SessionComponent
  {
  };

};

#endif /* WORKEREI_IDL */