summaryrefslogtreecommitdiff
path: root/DAnCE/dance/Plan_Launcher/LM_Launcher.h
blob: fbc9b1a2907804f600ca7c000fd7691b61659ba7 (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
/**
 * @file LM_Launcher.h
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 *
 * Plan Launcher bridge for the Locality Manager.
 */

#ifndef DANCE_PLAN_LAUNCHER_LM
#define DANCE_PLAN_LAUNCHER_LM

#include "Plan_Launcher_Base_Impl_T.h"

#include "dance/DAnCE_LocalityManagerC.h"
#include "dance/Plan_Launcher/Plan_Launcher_Export.h"

namespace DAnCE
{
  class DAnCE_Plan_Launcher_Export LM_Launcher :
    public virtual Plan_Launcher_Base_Impl< ::DAnCE::LocalityManager,
                                            ::DAnCE::LocalityManager,
                                            ::DAnCE::LocalityManager >
  {
    typedef Plan_Launcher_Base_Impl< ::DAnCE::LocalityManager,
      ::DAnCE::LocalityManager,
      ::DAnCE::LocalityManager > __Base;

  public:
    LM_Launcher (CORBA::ORB_ptr orb,
                 __Base::Manager_ptr managerw);

    ~LM_Launcher (void);


    bool lookup_by_uuid (const char *uuid,
                         CORBA::Object_out am,
                         CORBA::Object_out app);
  };
}

#endif