summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_RefCount_Guard.i
blob: b69511a8382dd44fdd9419dc86b4a7fa77b33899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

template<class T> ACE_INLINE
TAO_ESF_RefCount_Guard<T>::
    TAO_ESF_RefCount_Guard (T &refcount)
  :  refcount_ (refcount)
{
  this->refcount_++;
}

template<class T> ACE_INLINE
TAO_ESF_RefCount_Guard<T>::
    ~TAO_ESF_RefCount_Guard (void)
{
  this->refcount_--;
}