blob: f6c93ddfa4c8f6ea6d7b4f73a9383114e5cc63c0 (
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
28
29
|
// $Id$
#include "tao/Transport_Mux_Strategy.h"
#include "tao/Reply_Dispatcher.h"
ACE_RCSID(tao, Transport_Mut_Strategy, "$Id$")
TAO_Transport_Mux_Strategy::TAO_Transport_Mux_Strategy (TAO_Transport *transport)
: transport_ (transport)
{
}
TAO_Transport_Mux_Strategy::~TAO_Transport_Mux_Strategy (void)
{
}
int
TAO_Transport_Mux_Strategy::bind_dispatcher (CORBA::ULong,
TAO_Reply_Dispatcher *rd)
{
rd->dispatcher_bound (this->transport_);
return 0;
}
void
TAO_Transport_Mux_Strategy::unbind_dispatcher (CORBA::ULong)
{
}
|