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