summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/RequestProcessingStrategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/RequestProcessingStrategy.cpp')
-rw-r--r--TAO/tao/PortableServer/RequestProcessingStrategy.cpp61
1 files changed, 0 insertions, 61 deletions
diff --git a/TAO/tao/PortableServer/RequestProcessingStrategy.cpp b/TAO/tao/PortableServer/RequestProcessingStrategy.cpp
deleted file mode 100644
index 535faabda48..00000000000
--- a/TAO/tao/PortableServer/RequestProcessingStrategy.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file RequestProcessingStrategy.cpp
- *
- * $Id$
- */
-//=============================================================================
-
-#include "tao/PortableServer/RequestProcessingStrategy.h"
-
-ACE_RCSID (PortableServer,
- RequestProcessingStrategy,
- "$Id$")
-
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- RequestProcessingStrategy::RequestProcessingStrategy (void)
- : poa_ (0)
- {
- }
-
- void
- RequestProcessingStrategy::strategy_init(
- TAO_Root_POA *poa,
- ::PortableServer::ServantRetentionPolicyValue sr_value
- ACE_ENV_ARG_DECL_NOT_USED)
- {
- poa_ = poa;
- sr_value_ = sr_value;
- }
-
- void
- RequestProcessingStrategy::strategy_init(
- TAO_Root_POA *poa
- ACE_ENV_ARG_DECL_NOT_USED)
- {
- poa_ = poa;
- }
-
- void
- RequestProcessingStrategy::strategy_cleanup(ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- {
- poa_ = 0;
- }
-
- ::PortableServer::ServantRetentionPolicyValue
- RequestProcessingStrategy::sr_type() const
- {
- return sr_value_;
- }
- }
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL