summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/TargetManager/TargetManager.idl
blob: 21200871e6862fc5aa84e02e468568f653b6d608 (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
34
35
36
37
38
// $Id$

/**
 * @file TargetManager.idl
 * @brief TargetManager interface defintion
 *
 * @author Nilabja R <nilabjar@dre.vanderbilt.edu>
 */

#ifndef TARGETMGR_IDL
#define TARGETMGR_IDL



#include "ciao/Components.idl"
#include "ciao/Target_Data.idl"
#include "TargetManagerExt.idl"

/**
 * @module CIAO
 *
 * @brief TargetManager interface defintion
 *
 */
module CIAO
{
  component TargetManagerImpl
  {
    provides ::Deployment::TargetManager targetMgr;
    provides CIAO::TargetManagerExt target_manager_ext;
  };

  home TargetManagerHome manages TargetManagerImpl
  {
  };
};

#endif