summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
blob: b96345cb11a3abe6cd81468a375217758000f6b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

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();
}