summaryrefslogtreecommitdiff
path: root/DAnCE/dance/TargetManager/ResourceCommitmentManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/TargetManager/ResourceCommitmentManager.h')
-rw-r--r--DAnCE/dance/TargetManager/ResourceCommitmentManager.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/DAnCE/dance/TargetManager/ResourceCommitmentManager.h b/DAnCE/dance/TargetManager/ResourceCommitmentManager.h
deleted file mode 100644
index ebb91c40a86..00000000000
--- a/DAnCE/dance/TargetManager/ResourceCommitmentManager.h
+++ /dev/null
@@ -1,58 +0,0 @@
-//
-/**
- * @file ResourceCommitmentManager.h
- *
- * @brief This file declares the ResourceCommitmentManager class
- *
- * This class acts as the servant of the interface
- * ResourceCommitmentManager
- */
-#ifndef DEPLOYMENT_RESOURCECOMMITMENTMANAGERI_H_
-#define DEPLOYMENT_RESOURCECOMMITMENTMANAGERI_H_
-
-#include "dance/Deployment/Deployment_ResourceCommitmentManagerS.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-namespace DAnCE
-{
-
- class ResourceCommitmentManager_i
- : public virtual POA_Deployment::ResourceCommitmentManager
- {
- public:
- /// Constructor
- ResourceCommitmentManager_i (void);
-
- /// Destructor
- virtual ~ResourceCommitmentManager_i (void);
-
- /**
- * @brief Commits the resources
- *
- * This function makes a call to the DomainDataManager in order
- * to commit the resources mentioned in the ResourceAllocation
- * sequence. If the resource cannot be allocated throws a
- * ResourceCommitmentFailed exception
- */
- virtual void commitResources (
- const ::Deployment::ResourceAllocations& resources);
-
- virtual void releaseResources (
- const ::Deployment::ResourceAllocations & resources);
-
- private:
- /**
- * @brief This function adds the res to already commited resources.
- * This is to be called from within commitResources
- */
- void add_to_committed_resource (::Deployment::ResourceAllocations res);
-
- /// The commited resource
- ::Deployment::ResourceAllocations resources_;
- };
-}
-
-#endif /* DEPLOYMENT_RESOURCECOMMITMENTMANAGERI_H_ */