// -*- C++ -*- // // $Id$ TAO_BEGIN_VERSIONED_NAMESPACE_DECL template void TAO_ESF_Immediate_Changes:: connected (PROXY *proxy ACE_ENV_ARG_DECL) { ACE_GUARD (ACE_LOCK, ace_mon, this->lock_); proxy->_incr_refcnt (); this->collection_.connected (proxy ACE_ENV_ARG_PARAMETER); } template void TAO_ESF_Immediate_Changes:: reconnected (PROXY *proxy ACE_ENV_ARG_DECL) { ACE_GUARD (ACE_LOCK, ace_mon, this->lock_); proxy->_incr_refcnt (); this->collection_.reconnected (proxy ACE_ENV_ARG_PARAMETER); } template void TAO_ESF_Immediate_Changes:: disconnected (PROXY *proxy ACE_ENV_ARG_DECL) { ACE_GUARD (ACE_LOCK, ace_mon, this->lock_); this->collection_.disconnected (proxy ACE_ENV_ARG_PARAMETER); } template void TAO_ESF_Immediate_Changes:: shutdown (ACE_ENV_SINGLE_ARG_DECL) { ACE_GUARD (ACE_LOCK, ace_mon, this->lock_); this->collection_.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER); } TAO_END_VERSIONED_NAMESPACE_DECL