blob: 46ae7a9c8700c3fac33bd05d37b79687a48d946c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// -*- 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)
{
poa_ = poa;
}
void
LifespanStrategy::strategy_cleanup (void)
{
poa_ = 0;
}
CORBA::ULong
LifespanStrategy::key_type_length (void) const
{
return sizeof (char);
}
} /* namespace Portable_Server */
} /* namespace TAO */
TAO_END_VERSIONED_NAMESPACE_DECL
|