Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ForwardRequest / Client_ORBInitializer.h
blobaeb353b6d47d70ab0e7b05483e01edb3bdddb83a
1 // -*- C++ -*-
3 //=============================================================================
4 /**
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)
22 # 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.
31 #if defined(_MSC_VER)
32 #pragma warning(push)
33 #pragma warning(disable:4250)
34 #endif /* _MSC_VER */
36 /// Client side ORB initializer.
37 class Client_ORBInitializer :
38 public virtual PortableInterceptor::ORBInitializer,
39 public virtual ::CORBA::LocalObject
41 public:
42 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
44 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
47 #if defined(_MSC_VER)
48 #pragma warning(pop)
49 #endif /* _MSC_VER */
51 #endif /* TAO_HAS_INTERCEPTORS == 1 */
53 #include /**/ "ace/post.h"
55 #endif /* TAO_CLIENT_ORB_INITIALIZER_H */