summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl b/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
new file mode 100644
index 00000000000..043f28ab9b6
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
@@ -0,0 +1,22 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE int
+TAO_Notify_PropertySeq::find (const char* name,
+ CosNotification::PropertyValue& value) const
+{
+ ACE_CString str_name (name);
+ return this->property_map_.find (str_name, value);
+}
+
+ACE_INLINE
+size_t
+TAO_Notify_PropertySeq::size() const
+{
+ return this->property_map_.current_size();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL