summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/Policy_Set.inl
blob: 2263ccd4fad3ca47a31b4a6a26f4b966b3cc5547 (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) const
{
  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