summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/TargetManager/TargetManagerImpl.idl
blob: 705a3146a759b157c4755fd4b252ceddd73f6c42 (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 TargetManagerImpl.idl
 * @brief TargetManager interface defintion
 *
 * @author Nilabja R <nilabjar@dre.vanderbilt.edu>
 */

#ifndef TARGETMGR_IDL
#define TARGETMGR_IDL

#include "ciao/Components.idl"
#include "ciao/Deployment_Target_Data.idl"
#include "TargetManagerExt.idl"
#include "DomainEvents.idl"

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

    publishes Domain_Changed_Event changes;
  };

  home TargetManagerHome manages TargetManagerImpl
  {
  };
};

#endif