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

#include "tao/PortableServer/ImplicitActivationStrategyExplicit.h"

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

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace Portable_Server
  {
    bool
    ImplicitActivationStrategyExplicit::allow_implicit_activation (void) const
    {
      return false;
    }
  }
}

TAO_END_VERSIONED_NAMESPACE_DECL


ACE_FACTORY_NAMESPACE_DEFINE (
  ACE_Local_Service,
  ImplicitActivationStrategyExplicit,
  TAO::Portable_Server::ImplicitActivationStrategyExplicit)

ACE_STATIC_SVC_DEFINE (
  ImplicitActivationStrategyExplicit,
  ACE_TEXT ("ImplicitActivationStrategyExplicit"),
  ACE_SVC_OBJ_T,
  &ACE_SVC_NAME (ImplicitActivationStrategyExplicit),
  ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
  0)