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

#include "tao/PortableServer/ImplicitActivationStrategy.h"

ACE_RCSID (PortableServer,
           ImplicitActivationStrategy,
           "$Id$")

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace Portable_Server
  {
    void
    ImplicitActivationStrategy::strategy_init (
      TAO_Root_POA * /*poa*/
      ACE_ENV_ARG_DECL_NOT_USED)
    {
      // dependent on type create the correct strategy.
    }

    void
    ImplicitActivationStrategy::strategy_cleanup(
      ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
    {
    }
  }
}

TAO_END_VERSIONED_NAMESPACE_DECL