summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Admin.i
blob: f6b4d29bc6fc8c24e0b7f028403520feae1e225a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// $Id$

template<class EC,class P,class I> ACE_INLINE void
TAO_ESF_Proxy_Admin<EC,P,I>::
    for_each (TAO_ESF_Worker<P> *worker
              ACE_ENV_ARG_DECL)
      ACE_THROW_SPEC ((CORBA::SystemException))
{
  this->collection_->for_each (worker ACE_ENV_ARG_PARAMETER);
}

template <class C>
ACE_INLINE
TAO_ESF_RefCountedRef<C>::TAO_ESF_RefCountedRef (C *counted)
  : counted_ (counted)
{}

template <class C>
ACE_INLINE
TAO_ESF_RefCountedRef<C>::~TAO_ESF_RefCountedRef ()
{
  if (this->counted_ != 0)
    {
      this->counted_->_decr_refcnt ();
    }
}