summaryrefslogtreecommitdiff
path: root/CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp')
-rw-r--r--CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp b/CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp
deleted file mode 100644
index e4c377e436a..00000000000
--- a/CIAO/ciao/FTComponentServer/Configurators/NoOp/NoOp_Configurator.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-// $Id$
-
-#include "NoOp_Configurator.h"
-
-namespace CIAO
-{
- namespace Deployment
- {
-
- NoOp_Configurator::~NoOp_Configurator (void)
- {
- // Not much to do.
- }
-
- int
- NoOp_Configurator::pre_orb_initialize ()
- {
- return 0;
- }
-
- int
- NoOp_Configurator::post_orb_initialize (CORBA::ORB_ptr)
- {
- return 0;
- }
-
- int
- NoOp_Configurator::init_resource_manager
- (const ::Components::ConfigValues & /*properties*/)
- {
- // @@ Currently do thing. We should go over the resource struct in
- // the future and throw exceptions if there are
- // un-recognizable/supported stuff in it.
- return 0;
- }
-
- CORBA::PolicyList *
- NoOp_Configurator::find_container_policies
- (const ::Components::ConfigValues & /*properties*/)
- {
- // Not much to do.
-
- return 0;
- }
- }
-}