summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/TargetManager/TargetManager.idl
blob: 2f3ff9c9446104a0a9f770c584a8ade0975b6067 (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
40
41
42
43
// $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"

#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