blob: a4ec5b8a0dda3ebbacf9a5890a9368d2df038abc (
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
|
#include "tao/Policy_Current.h"
#if (TAO_HAS_CORBA_MESSAGING == 1)
#include "tao/TSS_Resources.h"
#if !defined (__ACE_INLINE__)
# include "tao/Policy_Current.inl"
#endif /* ! __ACE_INLINE__ */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Policy_Current_Impl &
TAO_Policy_Current::implementation (TAO_Policy_Current_Impl ¤t)
{
TAO_TSS_Resources * const tss = TAO_TSS_Resources::instance ();
TAO_Policy_Current_Impl *old = tss->policy_current_;
tss->policy_current_ = ¤t;
return *old;
}
TAO_Policy_Current_Impl &
TAO_Policy_Current::implementation (void) const
{
return *TAO_TSS_Resources::instance ()->policy_current_;
}
CORBA::Policy_ptr
TAO_Policy_Current::get_policy (CORBA::PolicyType policy)
{
TAO_Policy_Current_Impl &impl = this->implementation ();
return impl.get_policy (policy);
}
CORBA::PolicyList *
TAO_Policy_Current::get_policy_overrides (const CORBA::PolicyTypeSeq & ts)
{
TAO_Policy_Current_Impl &impl = this->implementation ();
return impl.get_policy_overrides (ts);
}
void
TAO_Policy_Current::set_policy_overrides (const CORBA::PolicyList & policies,
CORBA::SetOverrideType set_add)
{
TAO_Policy_Current_Impl &impl = this->implementation ();
impl.set_policy_overrides (policies, set_add);
}
CORBA::Policy_ptr
TAO_Policy_Current::get_cached_policy (TAO_Cached_Policy_Type type)
{
TAO_Policy_Current_Impl &impl = this->implementation ();
return impl.get_cached_policy (type);
}
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
|