3 // ===================================================================
5 * @file BiDir_ORBInitializer.h
7 * @author Balachandran Natarajan <bala@cs.wustl.edu>
9 // ===================================================================
10 #ifndef TAO_BIDIR_ORB_INITIALIZER_H
11 #define TAO_BIDIR_ORB_INITIALIZER_H
13 #include /**/ "ace/pre.h"
15 #include "tao/BiDir_GIOP/bidirgiop_export.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 #include "tao/PI/PI.h"
22 #include "tao/LocalObject.h"
24 // This is to remove "inherits via dominance" warnings from MSVC.
25 // MSVC is being a little too paranoid.
28 #pragma warning(disable:4250)
31 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
33 /// BiDIR ORB initializer.
34 class TAO_BiDir_ORBInitializer
35 : public virtual PortableInterceptor::ORBInitializer
36 , public virtual ::CORBA::LocalObject
39 void pre_init (PortableInterceptor::ORBInitInfo_ptr info
) override
;
41 void post_init (PortableInterceptor::ORBInitInfo_ptr info
) override
;
44 /// Register BiDir policy factories.
45 void register_policy_factories (PortableInterceptor::ORBInitInfo_ptr info
);
48 TAO_END_VERSIONED_NAMESPACE_DECL
54 #include /**/ "ace/post.h"
56 #endif /* TAO_BIDIR_ORB_INITIALIZER_H */