summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Default_Servant_Dispatcher.cpp
blob: 7bc48f8e3e6e163863857aad399dc6392cd947f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @(#) $Id$

#include "Default_Servant_Dispatcher.h"

ACE_RCSID(tao, Default_Acceptor_Filter, "$Id$")

TAO_Default_Servant_Dispatcher::~TAO_Default_Servant_Dispatcher (void)
{
}

void
TAO_Default_Servant_Dispatcher::dispatch (
  TAO_Object_Adapter::Servant_Upcall &servant_upcall,
  TAO_ServerRequest &req,
  CORBA::Environment &ACE_TRY_ENV)
{
  servant_upcall.servant ()->_dispatch (req,
                                        &servant_upcall,
                                        ACE_TRY_ENV);
}