Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / DevGuideExamples / PortableInterceptors / Auth / ServerInitializer.h
blob29c576efe76fca9a1914831bb4f975176de17efa
1 #ifndef SERVERINITIALIZER_H
2 #define SERVERINITIALIZER_H
4 #include "tao/PortableInterceptorC.h"
5 #include "tao/LocalObject.h"
6 #include "tao/PI/PI.h"
8 class ServerInitializer :
9 public virtual PortableInterceptor::ORBInitializer,
10 public virtual CORBA::LocalObject
12 public:
13 ServerInitializer ();
15 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
17 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
19 private:
20 int interceptor_type_;
23 #endif