Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / Refcounted_Auto_Ptr.cpp
blobae40c485ad55bacacb899c2bce93613af1756dbe
1 #ifndef ACE_REFCOUNTED_AUTO_PTR_CPP
2 #define ACE_REFCOUNTED_AUTO_PTR_CPP
4 #include "ace/Refcounted_Auto_Ptr.h"
6 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
8 ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Refcounted_Auto_Ptr)
9 ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Refcounted_Auto_Ptr_Rep)
11 template <class X, class ACE_LOCK>
12 ACE_Refcounted_Auto_Ptr<X, ACE_LOCK>::~ACE_Refcounted_Auto_Ptr ()
14 AUTO_REFCOUNTED_PTR_REP::detach (rep_);
17 ACE_END_VERSIONED_NAMESPACE_DECL
19 #endif /* !ACE_REFCOUNTED_AUTO_PTR_CPP */