summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategy.cpp
blob: e331e653adb0bc1108253e6a4bcaa75b1d7b5119 (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    LifespanStrategy.cpp
 */
//=============================================================================

#include "tao/PortableServer/LifespanStrategy.h"

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 ()
    {
      poa_ = 0;
    }

    CORBA::ULong
    LifespanStrategy::key_type_length () const
    {
      return sizeof (char);
    }
  } /* namespace Portable_Server */
} /* namespace TAO */

TAO_END_VERSIONED_NAMESPACE_DECL