Updated logging to include the class/method so that it is more obvious where these...
[ACE_TAO.git] / TAO / tao / PortableServer / LifespanStrategy.cpp
blobe331e653adb0bc1108253e6a4bcaa75b1d7b5119
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 LifespanStrategy::LifespanStrategy () :
18 poa_ (0)
22 void
23 LifespanStrategy::strategy_init (TAO_Root_POA *poa)
25 poa_ = poa;
28 void
29 LifespanStrategy::strategy_cleanup ()
31 poa_ = 0;
34 CORBA::ULong
35 LifespanStrategy::key_type_length () const
37 return sizeof (char);
39 } /* namespace Portable_Server */
40 } /* namespace TAO */
42 TAO_END_VERSIONED_NAMESPACE_DECL