Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / DevGuideExamples / PortableInterceptors / PICurrent / ServerInitializer.h
blobfb880e8b5f4ae0cdd32e9106f96c2f65deaa26d1
1 #ifndef SERVERINITIALIZER_H
2 #define SERVERINITIALIZER_H
4 #include "tao/PortableInterceptorC.h"
5 #include "tao/PI/PI.h"
7 class ServerInitializer :
8 public virtual PortableInterceptor::ORBInitializer
10 public:
11 ServerInitializer ();
13 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
15 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
17 private:
18 int interceptor_type_;
21 #endif