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

#include "../BBN_UAV.idl"

module BBN_UAV
{
  component Battle
    {
      consumes StartEngage start_engage;
    };

  home BattleHome manages Battle
    {
    };
};

#endif /*CIAO_BATTLE_IDL */