summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/Policy_Set.inl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/Policy_Set.inl')
-rw-r--r--trunk/TAO/tao/Policy_Set.inl27
1 files changed, 27 insertions, 0 deletions
diff --git a/trunk/TAO/tao/Policy_Set.inl b/trunk/TAO/tao/Policy_Set.inl
new file mode 100644
index 00000000000..2263ccd4fad
--- /dev/null
+++ b/trunk/TAO/tao/Policy_Set.inl
@@ -0,0 +1,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