blob: 0cbc7c4847f4e5e8fb11738d4a694870c511bc20 (
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
|
// $Id$
#include "tao/Collocation_Resolver.h"
#include "ace/Dynamic_Service.h"
ACE_RCSID(tao, Collocation_Resolver, "$Id$")
#if !defined (__ACE_INLINE__)
# include "tao/Collocation_Resolver.i"
#endif /* ! __ACE_INLINE__ */
TAO_Collocation_Resolver::~TAO_Collocation_Resolver (void)
{
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Dynamic_Service<TAO_Collocation_Resolver>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Dynamic_Service<TAO_Collocation_Resolver>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
|