Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tao / PortableServer / LifespanStrategy.cpp
blob6ea71982149d2997ae92de2ec8740ad6ee82929c
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file LifespanStrategy.cpp
6 */
7 //=============================================================================
9 #include "tao/PortableServer/LifespanStrategy.h"
11 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
13 namespace TAO
15 namespace Portable_Server
17 void
18 LifespanStrategy::strategy_init (TAO_Root_POA *poa)
20 poa_ = poa;
23 void
24 LifespanStrategy::strategy_cleanup ()
26 poa_ = nullptr;
29 CORBA::ULong
30 LifespanStrategy::key_type_length () const
32 return sizeof (char);
34 } /* namespace Portable_Server */
35 } /* namespace TAO */
37 TAO_END_VERSIONED_NAMESPACE_DECL