summaryrefslogtreecommitdiff
path: root/src/pugixml.hpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-03-29 06:37:39 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-03-29 06:37:39 +0000
commit1e37455c1b73161e189867ba204c530052f70af7 (patch)
tree7e20c4b721cf4a3c4f7fd5805d11e572993aeccf /src/pugixml.hpp
parent9e3d8be0d082b20a9ed3b80eec0e841245594367 (diff)
Const-correctness fixes for find_child_by_attribute
git-svn-id: http://pugixml.googlecode.com/svn/trunk@120 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r--src/pugixml.hpp8
1 files changed, 4 insertions, 4 deletions
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
/**