// -*- C++ -*- //============================================================================= /** * @file Policy_Current.h * * $Id$ * * An implementation for the CORBA::PolicyManager interface. * * * @author Carlos O'Ryan (coryan@cs.wustl.edu) */ //============================================================================= #ifndef TAO_POLICY_CURRENT_H #define TAO_POLICY_CURRENT_H #include /**/ "ace/pre.h" #include "tao/orbconf.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #if (TAO_HAS_CORBA_MESSAGING == 1) #include "tao/PolicyC.h" #include "tao/LocalObject.h" #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4250) #endif /* _MSC_VER */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_Policy_Current_Impl; class TAO_Policy_Current : public CORBA::PolicyCurrent , public TAO_Local_RefCounted_Object { public: /// Constructor TAO_Policy_Current (void); /// Obtain a single policy. CORBA::Policy_ptr get_policy ( CORBA::PolicyType policy ); /// Obtain a single cached policy. CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type ); // = The CORBA::PolicyManager operations virtual CORBA::PolicyList * get_policy_overrides ( const CORBA::PolicyTypeSeq & ts ) ACE_THROW_SPEC ((CORBA::SystemException)); virtual void set_policy_overrides ( const CORBA::PolicyList & policies, CORBA::SetOverrideType set_add ) ACE_THROW_SPEC ((CORBA::SystemException, CORBA::InvalidPolicies)); // = Set and get the implementation. TAO_Policy_Current_Impl &implementation (void) const; TAO_Policy_Current_Impl &implementation (TAO_Policy_Current_Impl &); }; TAO_END_VERSIONED_NAMESPACE_DECL #if defined(_MSC_VER) #pragma warning(pop) #endif /* _MSC_VER */ #if defined (__ACE_INLINE__) # include "tao/Policy_Current.inl" #endif /* __ACE_INLINE__ */ #endif /* TAO_HAS_CORBA_MESSAGING == 1 */ #include /**/ "ace/post.h" #endif /* TAO_POLICY_CURRENT_H */