From 1e37455c1b73161e189867ba204c530052f70af7 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Sun, 29 Mar 2009 06:37:39 +0000 Subject: Const-correctness fixes for find_child_by_attribute git-svn-id: http://pugixml.googlecode.com/svn/trunk@120 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pugixml.hpp') diff --git a/src/pugixml.hpp b/src/pugixml.hpp index aaf4582..441b0fe 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1104,7 +1104,7 @@ namespace pugi * \param attr_value - attribute value of child node * \return first matching child node, or empty node */ - xml_node find_child_by_attribute(const char* name, const char* attr_name, const char* attr_value); + xml_node find_child_by_attribute(const char* name, const char* attr_name, const char* attr_value) const; /** * Find child node with the specified name that has specified attribute (use pattern matching for node name and attribute name/value) @@ -1114,7 +1114,7 @@ namespace pugi * \param attr_value - pattern for attribute value of child node * \return first matching child node, or empty node */ - xml_node find_child_by_attribute_w(const char* name, const char* attr_name, const char* attr_value); + xml_node find_child_by_attribute_w(const char* name, const char* attr_name, const char* attr_value) const; /** * Find child node that has specified attribute @@ -1123,7 +1123,7 @@ namespace pugi * \param attr_value - attribute value of child node * \return first matching child node, or empty node */ - xml_node find_child_by_attribute(const char* attr_name, const char* attr_value); + xml_node find_child_by_attribute(const char* attr_name, const char* attr_value) const; /** * Find child node that has specified attribute (use pattern matching for attribute name/value) @@ -1132,7 +1132,7 @@ namespace pugi * \param attr_value - pattern for attribute value of child node * \return first matching child node, or empty node */ - xml_node find_child_by_attribute_w(const char* attr_name, const char* attr_value); + xml_node find_child_by_attribute_w(const char* attr_name, const char* attr_value) const; #ifndef PUGIXML_NO_STL /** -- cgit v1.2.3