blob: 2d0b32b056cd44d1a9e597a85b82bfbe9c8d8443 (
plain)
1
2
3
4
5
6
7
8
|
/* -*- C++ -*- */
// $Id$
template <class TYPE> ACE_INLINE TYPE *
ACE_Dynamic_Service<TYPE>::instance (const ACE_TCHAR *name)
{
return ACE_reinterpret_cast(TYPE*,ACE_Dynamic_Service_Base::instance (name));
}
|