blob: adc972153949ed2d7e087af1167d93c199953244 (
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
|
// $Id$
/**
* @file TargetManager.idl
* @brief TargetManager interface defintion
*
* @author Nilabja R <nilabjar@dre.vanderbilt.edu>
*/
#ifndef TARGETMGR_IDL
#define TARGETMGR_IDL
#include "ccm/Components.idl"
#include "DAnCE/Deployment/Deployment_PlanError.idl"
#include "DAnCE/TargetManager/TargetManagerExt.idl"
#include "DAnCE/TargetManager/DomainEvents.idl"
module CIAO
{
component TargetManagerImpl
{
provides ::Deployment::TargetManager targetMgr;
publishes Domain_Changed_Event changes;
};
home TargetManagerHome manages TargetManagerImpl
{
};
};
#endif
|