Remove ACE_UNUSED_ARG
[ACE_TAO.git] / TAO / interop-tests / CdrOutArg / tao / Client_ORBInitializer.h
bloba9108fadae876760ff529a14605867bbb2e613f0
1 // -*- C++ -*-
3 #ifndef TAO_CLIENT_ORB_INITIALIZER_H
4 #define TAO_CLIENT_ORB_INITIALIZER_H
5 #include /**/ "ace/pre.h"
7 #include "tao/PI/PI.h"
9 #if !defined (ACE_LACKS_PRAGMA_ONCE)
10 # pragma once
11 #endif /* ACE_LACKS_PRAGMA_ONCE */
13 #include "tao/LocalObject.h"
15 // This is to remove "inherits via dominance" warnings from MSVC.
16 // MSVC is being a little too paranoid.
17 #if defined(_MSC_VER)
18 #pragma warning(push)
19 #pragma warning(disable:4250)
20 #endif /* _MSC_VER */
22 /// Client ORB initializer.
23 class Client_ORBInitializer :
24 public virtual PortableInterceptor::ORBInitializer,
25 public virtual ::CORBA::LocalObject
27 public:
28 /// Constructor
29 Client_ORBInitializer ();
31 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
33 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
36 #if defined(_MSC_VER)
37 #pragma warning(pop)
38 #endif /* _MSC_VER */
40 #include /**/ "ace/post.h"
41 #endif /* TAO_CLIENT_ORB_INITIALIZER_H */