blob: c01e3c9c882085615dfdd038a0124b548d6620d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// -*- C++ -*-
//=============================================================================
/**
* @file POA_Policy_Set.h
*
* $Id$
*
* POA
*
* @author Irfan Pyarali
*/
//=============================================================================
#ifndef TAO_POA_POLICY_SET_H
#define TAO_POA_POLICY_SET_H
#include /**/ "ace/pre.h"
#include "tao/PortableServer/portableserver_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Policy_Set.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Policy_Validator;
class TAO_PortableServer_Export TAO_POA_Policy_Set
{
public:
TAO_POA_Policy_Set (void);
TAO_POA_Policy_Set (const TAO_POA_Policy_Set &rhs);
~TAO_POA_Policy_Set (void);
/// Returns the policy at the specified index.
/// CORBA::Policy::_nil () is returned if the policy doesn't exist
CORBA::Policy *get_policy_by_index (CORBA::ULong index);
/// Get the number of policies
CORBA::ULong num_policies (void) const;
/// Obtain a single cached policy.
CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
void merge_policies (const CORBA::PolicyList &policies);
void merge_policy (const CORBA::Policy_ptr policy);
void validate_policies (TAO_Policy_Validator &validator,
TAO_ORB_Core &orb_core);
/// Add all of the client exposed policies to the specified list.
void add_client_exposed_fixed_policies (CORBA::PolicyList *client_exposed_policies);
TAO_Policy_Set &policies (void);
/// Obtain a single policy.
CORBA::Policy_ptr get_policy (CORBA::PolicyType policy);
protected:
TAO_Policy_Set impl_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/PortableServer/POA_Policy_Set.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_POA_POLICY_SET_H */
|