summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp')
-rw-r--r--CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp b/CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp
deleted file mode 100644
index 5735e109f0c..00000000000
--- a/CIAO/DAnCE/TargetManager/ResourceCommitmentManager.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-// $Id$
-//
-#include "DomainDataManager.h"
-#include "ResourceCommitmentManager.h"
-
-// Implementation skeleton constructor
-CIAO::ResourceCommitmentManager_i::ResourceCommitmentManager_i (void)
-{
-}
-
-// Implementation skeleton destructor
-CIAO::ResourceCommitmentManager_i::~ResourceCommitmentManager_i (void)
-{
-}
-
-void CIAO::ResourceCommitmentManager_i::commitResources (
- const ::Deployment::ResourceAllocations& resources)
-{
- CIAO::DomainDataManager::get_data_manager ()->commitResourceAllocation (resources);
-
- // commit succesful .. add to commited resource
- this->add_to_commited_resource (resources);
- return;
-}
-
-void CIAO::ResourceCommitmentManager_i::releaseResources (
- const ::Deployment::ResourceAllocations & resources)
-{
- ::Deployment::ResourceAllocations res;
-
- // if the resources set is null , use the already allocated resources ..
- if (resources.length () == 0)
- res = this->resources_;
- else
- res = resources;
-
- CIAO::DomainDataManager::get_data_manager ()->releaseResourceAllocation (res);
- return;
-}
-
-int CIAO::ResourceCommitmentManager_i::add_to_commited_resource (
- ::Deployment::ResourceAllocations res)
-{
- CORBA::ULong current_length = this->resources_.length ();
-
- this->resources_.length (current_length + res.length ());
-
- for (CORBA::ULong i =0;i < res.length ();i++)
- this->resources_[current_length + i] = res[i];
-
- return 0;
-}