Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / Request_Dispatcher.cpp
blobb7c031f1eee504b72c5bd7a89097d741856c22ca
1 #include "tao/Request_Dispatcher.h"
2 #include "tao/TAO_Server_Request.h"
3 #include "tao/ORB_Core.h"
5 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
7 TAO_Request_Dispatcher::~TAO_Request_Dispatcher ()
11 void
12 TAO_Request_Dispatcher::dispatch (TAO_ORB_Core *orb_core,
13 TAO_ServerRequest &request,
14 CORBA::Object_out forward_to)
16 // Dispatch based on object key
17 orb_core->adapter_registry ().dispatch (request.object_key (),
18 request,
19 forward_to);
22 TAO_END_VERSIONED_NAMESPACE_DECL