summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ORT_Adapter_Factory.cpp
blob: 6a2b21f769d33db6743d393791a8defa5743f6c4 (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
// $Id$

#include "tao/PortableServer/ORT_Adapter_Factory.h"
#include "ace/Dynamic_Service.h"

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

namespace TAO
{
  ORT_Adapter_Factory::~ORT_Adapter_Factory (void)
  {
  }

  #if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

  template class ACE_Dynamic_Service<ORT_Adapter_Factory>;

  #elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

  #pragma instantiate ACE_Dynamic_Service<ORT_Adapter_Factory>

  #endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
}