summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Refcountable.inl
blob: be75f075cd8c09f2a67f73ca173eb30e39186f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$

ACE_INLINE
TAO_NS_Refcountable_Guard::TAO_NS_Refcountable_Guard (TAO_NS_Refcountable& refcountable)
  :refcountable_ (refcountable)
{
  this->refcountable_._incr_refcnt ();
}

ACE_INLINE
TAO_NS_Refcountable_Guard::~TAO_NS_Refcountable_Guard ()
{
  this->refcountable_._decr_refcnt ();
}