summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/BMDevice/BMDevice.idl
blob: ae7a2ddd43051bdb8a369ef197ad8d61a148ec4f (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
//=============================================================================
/**
 * @file BMDevice.idl
 *
 * Definition of the BMDevice component
 *
 * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
 */
//=============================================================================
#ifndef CIAO_BMDEVICE_IDL
#define CIAO_BMDEVICE_IDL

#include "BasicSP.idl"

module BasicSP
{
  component BMDevice
  {
    provides ReadData data_read;
    publishes DataAvailable data_available;
    consumes TimeOut timeout_value;
  };

  home BMDeviceHome manages BMDevice
  {
  };
};

#endif /*CIAO_BMDEVICE_IDL */