summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategy.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/PortableServer/LifespanStrategy.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableServer/LifespanStrategy.cpp')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategy.cpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategy.cpp b/TAO/tao/PortableServer/LifespanStrategy.cpp
deleted file mode 100644
index aea66e7161c..00000000000
--- a/TAO/tao/PortableServer/LifespanStrategy.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file LifespanStrategy.cpp
- *
- * $Id$
- *
- */
-//=============================================================================
-
-#include "tao/PortableServer/LifespanStrategy.h"
-
-ACE_RCSID (PortableServer,
- LifespanStrategy,
- "$Id$")
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- LifespanStrategy::LifespanStrategy () :
- poa_ (0)
- {
- }
-
- void
- LifespanStrategy::strategy_init (
- TAO_Root_POA *poa
- ACE_ENV_ARG_DECL_NOT_USED)
- {
- poa_ = poa;
- }
-
- void
- LifespanStrategy::strategy_cleanup(
- ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
- {
- poa_ = 0;
- }
-
- CORBA::ULong
- LifespanStrategy::key_type_length (void) const
- {
- return sizeof (char);
- }
- } /* namespace Portable_Server */
-} /* namespace TAO */
-
-TAO_END_VERSIONED_NAMESPACE_DECL