summaryrefslogtreecommitdiff
path: root/CIAO/examples/BasicSP/BMDevice/BMDevice.idl
blob: 86477c12f8b23a5c69be4f8dc3674452fab0a73e (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
//$Id$
//=============================================================================
/**
 * @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;
    };

  home BMDeviceHome manages BMDevice
    {
    };
};

#endif /*CIAO_BMDEVICE_IDL */