aboutsummaryrefslogtreecommitdiff
path: root/cutl/xml/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-27 08:00:25 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-03-27 08:00:25 +0200
commit1d3d9dfb7b11da8e398f6f9c638291a0539f7bf0 (patch)
tree66d8a5382122e8369016c6a4f0d091629e5e37b8 /cutl/xml/parser.cxx
parent707387b10340c7b95db35c8b791e57a2d02ccbaf (diff)
Add attribute_present() function to XML parser
Diffstat (limited to 'cutl/xml/parser.cxx')
-rw-r--r--cutl/xml/parser.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/cutl/xml/parser.cxx b/cutl/xml/parser.cxx
index f57d9fd..42ce9ce 100644
--- a/cutl/xml/parser.cxx
+++ b/cutl/xml/parser.cxx
@@ -237,6 +237,27 @@ namespace cutl
return dv;
}
+ bool parser::
+ attribute_present (const qname_type& qn) const
+ {
+ if (const element_entry* e = get_element ())
+ {
+ attribute_map::const_iterator i (e->attr_map_.find (qn));
+
+ if (i != e->attr_map_.end ())
+ {
+ if (!i->second.handled)
+ {
+ i->second.handled = true;
+ e->attr_unhandled_--;
+ }
+ return true;
+ }
+ }
+
+ return false;
+ }
+
void parser::
next_expect (event_type e)
{