Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / AMI / Server_ORBInitializer.cpp
blob3937b416beef19601e1b2100b98c534d7ed27319
1 /**
2 * @file Server_ORBInitializer.cpp
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
7 #include "Server_ORBInitializer.h"
8 #include "Server_Interceptor.h"
10 Server_ORBInitializer::Server_ORBInitializer ()
14 void
15 Server_ORBInitializer::pre_init (
16 PortableInterceptor::ORBInitInfo_ptr)
20 void
21 Server_ORBInitializer::post_init (
22 PortableInterceptor::ORBInitInfo_ptr info)
24 PortableInterceptor::ServerRequestInterceptor_var interceptor(
25 new Echo_Server_Request_Interceptor);
27 info->add_server_request_interceptor (interceptor.in ());