summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/UAV/Engagement/Engagement.idl
blob: 9fd3708403fe7a8f33cd855430c131cd2fe02953 (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
//$Id$
//=============================================================================
/**
 * @file Engagement.idl
 *
 * Definition of the Engagement component
 *
 * @author George Edwards <g.edwards@vanderbilt.edu>
 * @author Gan Deng <gan.deng@vanderbilt.edu>
 */
//=============================================================================
#ifndef CIAO_ENGAGEMENT_IDL
#define CIAO_ENGAGEMENT_IDL

#include "../BBN_UAV.idl"

module BBN_UAV
{
  component Engagement
    {
      publishes StartEngage start_engage;
      publishes PrepareMove prepare_move;
      consumes PrepareEngage prepare_engage;
    };

  home EngagementHome manages Engagement
    {
    };
};

#endif /*CIAO_ENGAGEMENT_IDL */