00001 // -*- C++ -*- 00002 // 00003 // $Id: TAO_Singleton.inl 69153 2005-11-02 11:03:27Z ossama $ 00004 00005 00006 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00007 00008 // Default constructors. 00009 // 00010 // Note: don't explicitly initialize "instance_", because TYPE may not 00011 // have a default constructor. Let the compiler figure it out . . . 00012 00013 template <class TYPE, class ACE_LOCK> ACE_INLINE 00014 TAO_Singleton<TYPE, ACE_LOCK>::TAO_Singleton (void) 00015 { 00016 } 00017 00018 template <class TYPE, class ACE_LOCK> ACE_INLINE 00019 TAO_TSS_Singleton<TYPE, ACE_LOCK>::TAO_TSS_Singleton (void) 00020 { 00021 } 00022 00023 TAO_END_VERSIONED_NAMESPACE_DECL