3 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
5 template <class ACE_LOCK>
7 ACE_Refcountable_T<ACE_LOCK>::ACE_Refcountable_T (long refcount)
12 template <class ACE_LOCK>
14 ACE_Refcountable_T<ACE_LOCK>::increment ()
16 return ++this->refcount_;
19 template <class ACE_LOCK>
21 ACE_Refcountable_T<ACE_LOCK>::decrement ()
23 return --this->refcount_;
26 template <class ACE_LOCK>
28 ACE_Refcountable_T<ACE_LOCK>::refcount () const
30 return this->refcount_.value ();
33 ACE_END_VERSIONED_NAMESPACE_DECL