blob: a8767177029d4b318671fcb00723821bacaf9705 (
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
|
// -*- C++ -*-
//
// $Id$
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE CORBA::Boolean
TAO_Policy_Set::compatible_scope (TAO_Policy_Scope policy_scope) const
{
return
((static_cast<unsigned int> (policy_scope)
& static_cast<unsigned int> (this->scope_)) > 0);
}
ACE_INLINE CORBA::Policy *
TAO_Policy_Set::get_policy_by_index (CORBA::ULong index)
{
return CORBA::Policy::_duplicate (this->policy_list_[index]);
}
ACE_INLINE CORBA::ULong
TAO_Policy_Set::num_policies (void) const
{
return this->policy_list_.length();
}
TAO_END_VERSIONED_NAMESPACE_DECL
|