summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp b/TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp
deleted file mode 100644
index 830665f2c8a..00000000000
--- a/TAO/tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-// $Id$
-
-#include "LifespanStrategyTransientFactoryImpl.h"
-#include "ace/Dynamic_Service.h"
-#include "LifespanStrategyTransient.h"
-
-ACE_RCSID (PortableServer,
- LifespanStrategyFactoryImpl,
- "$Id$")
-
-namespace TAO
-{
- namespace Portable_Server
- {
- LifespanStrategy*
- LifespanStrategyTransientFactoryImpl::create (
- ::PortableServer::LifespanPolicyValue value)
- {
- LifespanStrategy* strategy = 0;
-
- switch (value)
- {
- case ::PortableServer::PERSISTENT :
- {
- ACE_ERROR ((LM_ERROR, "Incorrect type in LifespanStrategyTransientFactoryImpl"));
- break;
- }
- case ::PortableServer::TRANSIENT :
- {
- ACE_NEW_RETURN (strategy, LifespanStrategyTransient, 0);
- break;
- }
- }
-
- return strategy;
- }
-
- void
- LifespanStrategyTransientFactoryImpl::destroy (
- LifespanStrategy *strategy
- ACE_ENV_ARG_DECL)
- {
- strategy->strategy_cleanup (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
-
- delete strategy;
- }
-
- ACE_STATIC_SVC_DEFINE (
- LifespanStrategyTransientFactoryImpl,
- ACE_TEXT ("LifespanStrategyTransientFactory"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (LifespanStrategyTransientFactoryImpl),
- ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
- 0
- )
-
- ACE_FACTORY_DEFINE (TAO_PortableServer, LifespanStrategyTransientFactoryImpl)
-
- #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-
- template class ACE_Dynamic_Service<LifespanStrategyTransientFactoryImpl>;
-
- #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-
- #pragma instantiate ACE_Dynamic_Service<LifespanStrategyTransientFactoryImpl>
-
- #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
- }
-}
-