3 //=============================================================================
5 * @file Client_ORBInitializer.h
7 * Implementation header for the PortableInterceptor::ForwardRequest
8 * exception test client side ORB initializer.
10 * @author Ossama Othman <ossama@uci.edu>
12 //=============================================================================
14 #ifndef TAO_CLIENT_ORB_INITIALIZER_H
15 #define TAO_CLIENT_ORB_INITIALIZER_H
17 #include /**/ "ace/pre.h"
19 #include "tao/PI/PI.h"
21 #if !defined (ACE_LACKS_PRAGMA_ONCE)
23 #endif /* ACE_LACKS_PRAGMA_ONCE */
25 #if TAO_HAS_INTERCEPTORS == 1
27 #include "tao/LocalObject.h"
29 // This is to remove "inherits via dominance" warnings from MSVC.
30 // MSVC is being a little too paranoid.
33 #pragma warning(disable:4250)
36 /// Client side ORB initializer.
37 class Client_ORBInitializer
:
38 public virtual PortableInterceptor::ORBInitializer
,
39 public virtual ::CORBA::LocalObject
42 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info
);
44 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info
);
51 #endif /* TAO_HAS_INTERCEPTORS == 1 */
53 #include /**/ "ace/post.h"
55 #endif /* TAO_CLIENT_ORB_INITIALIZER_H */