gnuace: use list of generated files from GENERATED_DIRTY for ADDITIONAL_IDL_TARGETS
[ACE_TAO.git] / ACE / ace / Singleton.inl
blob912271ba20f0ccc80bbd8ace1bcc9d1681360ad4
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 // Default constructors.
5 //
6 // Note: don't explicitly initialize "instance_", because TYPE may not
7 // have a default constructor.  Let the compiler figure it out . . .
9 template <class TYPE, class ACE_LOCK> ACE_INLINE
10 ACE_Singleton<TYPE, ACE_LOCK>::ACE_Singleton (void)
14 template <class TYPE, class ACE_LOCK> ACE_INLINE
15 ACE_Unmanaged_Singleton<TYPE, ACE_LOCK>::ACE_Unmanaged_Singleton (void)
19 template <class TYPE, class ACE_LOCK> ACE_INLINE
20 ACE_TSS_Singleton<TYPE, ACE_LOCK>::ACE_TSS_Singleton (void)
24 template <class TYPE, class ACE_LOCK> ACE_INLINE
25 ACE_Unmanaged_TSS_Singleton<TYPE, ACE_LOCK>::ACE_Unmanaged_TSS_Singleton (void)
29 template <class TYPE, class ACE_LOCK> ACE_INLINE
30 ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::ACE_DLL_Singleton_T (void)
34 template <class TYPE, class ACE_LOCK>
35 ACE_DLL_Singleton_T<TYPE, ACE_LOCK>::~ACE_DLL_Singleton_T (void)
39 ACE_END_VERSIONED_NAMESPACE_DECL