2 * @file Server_ORBInitializer.cpp
4 * @author Carlos O'Ryan <coryan@atdesk.com>
7 #include "Server_ORBInitializer.h"
8 #include "Server_Interceptor.h"
10 Server_ORBInitializer::Server_ORBInitializer ()
15 Server_ORBInitializer::pre_init (
16 PortableInterceptor::ORBInitInfo_ptr
)
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 ());