summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/TargetManager/TargetManager.idl
blob: 249def3fcb09d8d4ef8bad250eacf3d7b51c7d0b (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
39
// $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