3 // $Id: Singleton.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 // Default constructors.
9 // Note: don't explicitly initialize "instance_", because TYPE may not
10 // have a default constructor. Let the compiler figure it out . . .
12 template <class TYPE, class ACE_LOCK> ACE_INLINE
13 ACE_Singleton<TYPE, ACE_LOCK>::ACE_Singleton (void)
17 template <class TYPE, class ACE_LOCK> ACE_INLINE
18 ACE_Unmanaged_Singleton<TYPE, ACE_LOCK>::ACE_Unmanaged_Singleton (void)
22 template <class TYPE, class ACE_LOCK> ACE_INLINE
23 ACE_TSS_Singleton<TYPE, ACE_LOCK>::ACE_TSS_Singleton (void)
27 template <class TYPE, class ACE_LOCK> ACE_INLINE
28 ACE_Unmanaged_TSS_Singleton<TYPE, ACE_LOCK>::ACE_Unmanaged_TSS_Singleton (void)
32 template <class TYPE, class ACE_LOCK> ACE_INLINE
33 ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::ACE_DLL_Singleton_T (void)
37 template <class TYPE, class ACE_LOCK>
38 ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::~ACE_DLL_Singleton_T (void)
42 ACE_END_VERSIONED_NAMESPACE_DECL