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

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

#include "tao/PortableServer/LifespanStrategy.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace Portable_Server
  {
    void
    LifespanStrategy::strategy_init (TAO_Root_POA *poa)
    {
      poa_ = poa;
    }

    void
    LifespanStrategy::strategy_cleanup ()
    {
      poa_ = nullptr;
    }

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

TAO_END_VERSIONED_NAMESPACE_DECL