summaryrefslogtreecommitdiff
path: root/DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h')
-rw-r--r--DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h b/DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h
deleted file mode 100644
index 08c89fd2fd4..00000000000
--- a/DAnCE/dance/LocalityManager/Scheduler/Events/Remove.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- * @file Remove.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- */
-
-#ifndef EVENT_REMOVE_H
-#define EVENT_REMOVE_H
-
-#include "dance/LocalityManager/Scheduler/Deployment_Scheduler_export.h"
-#include "dance/LocalityManager/Scheduler/Events/Action_Base.h"
-#include "dance/Deployment/Deployment_DeploymentPlanC.h"
-
-namespace DAnCE
-{
- /**
- * @class
- */
- class Deployment_Scheduler_Export Remove_Instance :
- public virtual Action_Base
- {
- public:
- Remove_Instance (::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const CORBA::Any &reference,
- const char *instance_type,
- Event_Future holder);
-
- virtual ~Remove_Instance (void);
-
-protected:
- virtual void invoke_pre_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);
-
- virtual void invoke (::DAnCE::InstanceDeploymentHandler_ptr);
-
- virtual void invoke_post_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);
-
- virtual void create_unexpected_exception (const std::string &,
- const std::string &);
-
- virtual void create_valid_result (Event_Result &);
-
- private:
- ::Deployment::DeploymentPlan & plan_;
- ::CORBA::ULong instanceRef_;
- ::CORBA::Any reference_;
- };
-}
-
-#endif