summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/Plan_Launcher/EM_Launcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/Plan_Launcher/EM_Launcher.h')
-rw-r--r--CIAO/DAnCE/Plan_Launcher/EM_Launcher.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/CIAO/DAnCE/Plan_Launcher/EM_Launcher.h b/CIAO/DAnCE/Plan_Launcher/EM_Launcher.h
deleted file mode 100644
index 06f70fa46be..00000000000
--- a/CIAO/DAnCE/Plan_Launcher/EM_Launcher.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/**
- * @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