summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/UAV/Satellite/Satellite.idl
blob: 0a5fd98f53e428976763e2f0339a3fdec3c7a8a9 (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 Satellite.idl
 *
 * Definition of the Satellite component
 *
 * @author Gan Deng <gan.deng@vanderbilt.edu>
 */
//=============================================================================
#ifndef CIAO_SATELLITE_IDL
#define CIAO_SATELLITE_IDL

#include "../BBN_UAV.idl"

module BBN_UAV
{
  interface trigger
    {
      void alert ();
    };

  component Satellite supports trigger
    {
      publishes TargetLocated target_located;
    };

  home SatelliteHome manages Satellite
    {
    };
};

#endif /* CIAO_SATELLITE_IDL */