Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / DevGuideExamples / PortableInterceptors / PICurrent / ServerInitializer.cpp
blobfc609c531c5bedd99b003bdcd262bc1d9c34e697
1 #include "ServerInitializer.h"
2 #include "ServerInterceptor.h"
4 ServerInitializer::ServerInitializer ()
8 void
9 ServerInitializer::pre_init (
10 PortableInterceptor::ORBInitInfo_ptr)
14 void
15 ServerInitializer::post_init (
16 PortableInterceptor::ORBInitInfo_ptr info)
18 // Create and register the request interceptors.
19 PortableInterceptor::ServerRequestInterceptor_var si =
20 new ServerInterceptor();
21 info->add_server_request_interceptor (si.in());