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

//=============================================================================
/**
 *  @file    RequestProcessingStrategy.cpp
 */
//=============================================================================

#include "tao/PortableServer/RequestProcessingStrategy.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

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

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

TAO_END_VERSIONED_NAMESPACE_DECL