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