diff options
Diffstat (limited to 'TAO/tao/Collocation_Resolver.cpp')
-rw-r--r-- | TAO/tao/Collocation_Resolver.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tao/Collocation_Resolver.cpp b/TAO/tao/Collocation_Resolver.cpp new file mode 100644 index 00000000000..0cbc7c4847f --- /dev/null +++ b/TAO/tao/Collocation_Resolver.cpp @@ -0,0 +1,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 */ |