3 //=============================================================================
5 * @file RequestProcessingPolicy.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
9 //=============================================================================
11 #ifndef TAO_PORTABLESERVER_REQUESTPROCESSINGPOLICY_H
12 #define TAO_PORTABLESERVER_REQUESTPROCESSINGPOLICY_H
13 #include /**/ "ace/pre.h"
15 #include "tao/PortableServer/portableserver_export.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 #include "tao/PortableServer/RequestProcessingPolicyC.h"
22 #include "tao/LocalObject.h"
24 // This is to remove "inherits via dominance" warnings from MSVC.
25 // MSVC is being a little too paranoid.
28 #pragma warning(disable:4250)
31 #if (TAO_HAS_MINIMUM_POA == 0) && !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO)
33 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
37 namespace Portable_Server
39 class TAO_PortableServer_Export RequestProcessingPolicy
:
40 public virtual ::PortableServer::RequestProcessingPolicy
,
41 public virtual ::CORBA::LocalObject
44 RequestProcessingPolicy (::PortableServer::RequestProcessingPolicyValue value
);
46 CORBA::Policy_ptr
copy ();
50 ::PortableServer::RequestProcessingPolicyValue
value ();
52 CORBA::PolicyType
policy_type ();
54 /// Return the cached policy type for this policy.
55 virtual TAO_Cached_Policy_Type
_tao_cached_type () const;
57 /// Returns the scope at which this policy can be applied. See orbconf.h.
58 virtual TAO_Policy_Scope
_tao_scope () const;
61 ::PortableServer::RequestProcessingPolicyValue value_
;
66 TAO_END_VERSIONED_NAMESPACE_DECL
68 #endif /* TAO_HAS_MINIMUM_POA == 0 */
74 #include /**/ "ace/post.h"
75 #endif /* TAO_PORTABLESERVER_REQUESTPROCESSINGPOLICY_H */