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

/**
 * @file Worker.idl
 *
 * Definition of a Worker component that does some work.  This work
 * can be either compute-bound or I/O-bound.
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */

#ifndef WORKER_IDL
#define WORKER_IDL

#include "../Priority_Test.idl"

module Priority_Test
{
  component Worker
    {
      provides Common_Ops some_device;
    };

  home WorkerHome manages Worker
  {
  };
};

#endif /* WORKER_IDL */