summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp b/TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp
deleted file mode 100644
index cd56cf99c58..00000000000
--- a/TAO/tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-// -*- C++ -*-
-#include "tao/PortableServer/LifespanStrategyPersistentFactoryImpl.h"
-#include "ace/Dynamic_Service.h"
-#include "tao/PortableServer/LifespanStrategyPersistent.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- LifespanStrategy*
- LifespanStrategyPersistentFactoryImpl::create (
- ::PortableServer::LifespanPolicyValue value)
- {
- LifespanStrategy* strategy = 0;
-
- switch (value)
- {
- case ::PortableServer::PERSISTENT :
- {
- ACE_NEW_RETURN (strategy, LifespanStrategyPersistent, 0);
- break;
- }
- case ::PortableServer::TRANSIENT :
- {
- TAOLIB_ERROR ((LM_ERROR, "Incorrect type in LifespanStrategyPersistentFactoryImpl"));
- break;
- }
- }
-
- return strategy;
- }
-
- void
- LifespanStrategyPersistentFactoryImpl::destroy (LifespanStrategy *strategy)
- {
- strategy->strategy_cleanup ();
-
- delete strategy;
- }
- }
-}
-
-ACE_STATIC_SVC_DEFINE (
- LifespanStrategyPersistentFactoryImpl,
- ACE_TEXT ("LifespanStrategyPersistentFactory"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (LifespanStrategyPersistentFactoryImpl),
- ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
- 0)
-
-ACE_FACTORY_NAMESPACE_DEFINE (
- ACE_Local_Service,
- LifespanStrategyPersistentFactoryImpl,
- TAO::Portable_Server::LifespanStrategyPersistentFactoryImpl)
-
-TAO_END_VERSIONED_NAMESPACE_DECL