Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / TransportCurrent / lib / Server_ORBInitializer.h
blob2dc95808f3f214352608b2d8657d8df18d773ab3
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Server_ORBInitializer.h
7 * @author Iliyan jeliazkov <iliyan@ociweb.com>
8 */
9 //=============================================================================
11 #ifndef SERVER_ORBINITIALIZER_T_H
12 #define SERVER_ORBINITIALIZER_T_H
13 #include /**/ "ace/pre.h"
15 #if !defined (ACE_LACKS_PRAGMA_ONCE)
16 # pragma once
17 #endif /* ACE_LACKS_PRAGMA_ONCE */
19 #include "tao/PI/PI.h"
20 #include "tao/LocalObject.h"
21 #include "tao/PortableInterceptorC.h"
23 #include "Current_Test_Export.h"
25 namespace Test
27 class Current_Test_Export Server_ORBInitializer :
28 public virtual PortableInterceptor::ORBInitializer,
29 public virtual ::CORBA::LocalObject
31 public:
32 Server_ORBInitializer (PortableInterceptor::ServerRequestInterceptor_ptr interceptor);
33 virtual ~Server_ORBInitializer ();
35 virtual void pre_init(PortableInterceptor::ORBInitInfo*);
37 virtual void post_init(PortableInterceptor::ORBInitInfo*);
39 private:
40 PortableInterceptor::ServerRequestInterceptor_var interceptor_;
44 #include /**/ "ace/post.h"
46 #endif /* SERVER_ORBINITIALIZER_T_H */