summaryrefslogtreecommitdiff
path: root/TAO/tao/Asynch_Reply_Dispatcher_Base.i
blob: 232f938f7ff7b589e3f6c4365182a10a51f42c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$

ACE_INLINE void
TAO_Asynch_Reply_Dispatcher_Base::transport (TAO_Transport *t)
{
  if (this->transport_ != 0) {
    this->transport_->remove_reference ();
  }

  this->transport_ = t;
  this->transport_->add_reference ();
}