summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP/BMDevice/BMDevice.idl
blob: b8d98e90156784831680b1a686b8ceee5cb21284 (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_out;
      publishes DataAvailable out_data;
      consumes TimeOut timeout20;
    };

  home BMDeviceHome manages BMDevice
    {
    };
};

#endif /*CIAO_BMDEVICE_IDL */