summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/PropertySeq.inl
blob: 043f28ab9b6daf6e1b8ab6a568bd86c05763101f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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