summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Plan_Launcher/EM_Launcher.h
blob: 06f70fa46be144aadb2246f50571bbda141daa19 (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
44
/**
 * @file EM_Launcher.h
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 *
 * $Id$
 *
 * Plan Launcher bridge for the Execution Manager.
 */

#ifndef DANCE_PLAN_LAUNCHER_EM
#define DANCE_PLAN_LAUNCHER_EM

#include "Plan_Launcher_Base_Impl_T.h"

#include "DAnCE/Deployment/Deployment_DomainApplicationC.h"
#include "DAnCE/Deployment/Deployment_DomainApplicationManagerC.h"
#include "DAnCE/Deployment/Deployment_ExecutionManagerC.h"

namespace DAnCE
{
  class EM_Launcher : 
    public virtual Plan_Launcher_Base_Impl< ::Deployment::ExecutionManager,
                                            ::Deployment::DomainApplicationManager,
                                            ::Deployment::DomainApplication >
  {
    typedef Plan_Launcher_Base_Impl< ::Deployment::ExecutionManager,
                                     ::Deployment::DomainApplicationManager,
                                     ::Deployment::DomainApplication > __Base;
    
  public:
    EM_Launcher (CORBA::ORB_ptr orb,
                      __Base::Manager_ptr managerw);
    
    ~EM_Launcher (void);
    
    
    bool lookup_by_uuid (const char *uuid,
                         CORBA::Object_out am,
                         CORBA::Object_out app);
    
  };
}

#endif