Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / TransportCurrent / lib / Client_ORBInitializer.h
blobe89f12deda2448699ce9054e67ebb77f49789aa3
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Client_ORBInitializer.h
7 * @author Iliyan jeliazkov <iliyan@ociweb.com>
8 */
9 //=============================================================================
11 #ifndef CLIENT_ORBINITIALIZER_T_H
12 #define CLIENT_ORBINITIALIZER_T_H
13 #include /**/ "ace/pre.h"
14 #include /**/ "ace/config.h"
16 #include /**/ "Current_Test_Export.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include "tao/PI/PI.h"
23 #include "tao/LocalObject.h"
24 #include "tao/PortableInterceptorC.h"
26 namespace Test
28 class Current_Test_Export Client_ORBInitializer :
29 public virtual PortableInterceptor::ORBInitializer,
30 public virtual ::CORBA::LocalObject
32 public:
33 Client_ORBInitializer (PortableInterceptor::ClientRequestInterceptor_ptr interceptor);
34 virtual ~Client_ORBInitializer ();
36 virtual void pre_init(PortableInterceptor::ORBInitInfo*);
38 virtual void post_init(PortableInterceptor::ORBInitInfo*);
40 private:
41 PortableInterceptor::ClientRequestInterceptor_var interceptor_;
45 #include /**/ "ace/post.h"
47 #endif /* CLIENT_ORBINITIALIZER_T_H */