summaryrefslogtreecommitdiff
path: root/DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h')
-rw-r--r--DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h b/DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h
deleted file mode 100644
index 72b22d90e41..00000000000
--- a/DAnCE/dance/LocalityManager/Scheduler/Events/Disconnect.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
- * @file Disconnect.h
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-
-#ifndef EVENT_DISCONNECT_H
-#define EVENT_DISCONNECT_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 Disconnect_Instance :
- public virtual Action_Base
- {
- public:
- Disconnect_Instance (::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong connectionRef,
- const char *instance_type,
- Event_Future holder);
-
- virtual ~Disconnect_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 connectionRef_;
- };
-}
-
-#endif