From 3f5ee885a5181cbc0b73be63d12b20cbaa5fb71a Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Wed, 28 Oct 2009 20:50:39 +0000 Subject: Fixed MSVC6 compilation of template member functions git-svn-id: http://pugixml.googlecode.com/svn/trunk@187 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.hpp | 179 ++++++++++++++++++++++++++------------------------------ 1 file changed, 84 insertions(+), 95 deletions(-) (limited to 'src/pugixml.hpp') diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 8c19851..92b7f90 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -47,6 +47,16 @@ #include +// Helpers for inline implementation +namespace pugi +{ + namespace impl + { + int PUGIXML_FUNCTION strcmp(const char*, const char*); + int PUGIXML_FUNCTION strcmpwild(const char*, const char*); + } +} + /// The PugiXML Parser namespace. namespace pugi { @@ -1096,7 +1106,24 @@ namespace pugi * \param name - node name * \param it - output iterator (for example, std::back_insert_iterator (result of std::back_inserter)) */ - template void all_elements_by_name(const char* name, OutputIterator it) const; + template void all_elements_by_name(const char* name, OutputIterator it) const + { + if (!_root) return; + + for (xml_node node = first_child(); node; node = node.next_sibling()) + { + if (node.type() == node_element) + { + if (!impl::strcmp(name, node.name())) + { + *it = node; + ++it; + } + + if (node.first_child()) node.all_elements_by_name(name, it); + } + } + } /** * Get all elements from subtree with name that matches given pattern @@ -1104,7 +1131,24 @@ namespace pugi * \param name - node name pattern * \param it - output iterator (for example, std::back_insert_iterator (result of std::back_inserter)) */ - template void all_elements_by_name_w(const char* name, OutputIterator it) const; + template void all_elements_by_name_w(const char* name, OutputIterator it) const + { + if (!_root) return; + + for (xml_node node = first_child(); node; node = node.next_sibling()) + { + if (node.type() == node_element) + { + if (!impl::strcmpwild(name, node.name())) + { + *it = node; + ++it; + } + + if (node.first_child()) node.all_elements_by_name_w(name, it); + } + } + } /** * Get first child @@ -1126,7 +1170,16 @@ namespace pugi * \param pred - predicate, that takes xml_attribute and returns bool * \return first attribute for which predicate returned true, or empty attribute */ - template xml_attribute find_attribute(Predicate pred) const; + template xml_attribute find_attribute(Predicate pred) const + { + if (!_root) return xml_attribute(); + + for (xml_attribute attrib = first_attribute(); attrib; attrib = attrib.next_attribute()) + if (pred(attrib)) + return attrib; + + return xml_attribute(); + } /** * Find child node using predicate @@ -1134,7 +1187,16 @@ namespace pugi * \param pred - predicate, that takes xml_node and returns bool * \return first child node for which predicate returned true, or empty node */ - template xml_node find_child(Predicate pred) const; + template xml_node find_child(Predicate pred) const + { + if (!_root) return xml_node(); + + for (xml_node node = first_child(); node; node = node.next_sibling()) + if (pred(node)) + return node; + + return xml_node(); + } /** * Find node from subtree using predicate @@ -1142,7 +1204,24 @@ namespace pugi * \param pred - predicate, that takes xml_node and returns bool * \return first node from subtree for which predicate returned true, or empty node */ - template xml_node find_node(Predicate pred) const; + template xml_node find_node(Predicate pred) const + { + if (!_root) return xml_node(); + + for (xml_node node = first_child(); node; node = node.next_sibling()) + { + if (pred(node)) + return node; + + if (node.first_child()) + { + xml_node found = node.find_node(pred); + if (found) return found; + } + } + + return xml_node(); + } /** * Find child node with the specified name that has specified attribute @@ -2019,94 +2098,4 @@ namespace pugi deallocation_function PUGIXML_FUNCTION get_memory_deallocation_function(); } -// Inline implementation - -namespace pugi -{ - namespace impl - { - int PUGIXML_FUNCTION strcmp(const char*, const char*); - int PUGIXML_FUNCTION strcmpwild(const char*, const char*); - } - - template void xml_node::all_elements_by_name(const char* name, OutputIterator it) const - { - if (!_root) return; - - for (xml_node node = first_child(); node; node = node.next_sibling()) - { - if (node.type() == node_element) - { - if (!impl::strcmp(name, node.name())) - { - *it = node; - ++it; - } - - if (node.first_child()) node.all_elements_by_name(name, it); - } - } - } - - template void xml_node::all_elements_by_name_w(const char* name, OutputIterator it) const - { - if (!_root) return; - - for (xml_node node = first_child(); node; node = node.next_sibling()) - { - if (node.type() == node_element) - { - if (!impl::strcmpwild(name, node.name())) - { - *it = node; - ++it; - } - - if (node.first_child()) node.all_elements_by_name_w(name, it); - } - } - } - - template inline xml_attribute xml_node::find_attribute(Predicate pred) const - { - if (!_root) return xml_attribute(); - - for (xml_attribute attrib = first_attribute(); attrib; attrib = attrib.next_attribute()) - if (pred(attrib)) - return attrib; - - return xml_attribute(); - } - - template inline xml_node xml_node::find_child(Predicate pred) const - { - if (!_root) return xml_node(); - - for (xml_node node = first_child(); node; node = node.next_sibling()) - if (pred(node)) - return node; - - return xml_node(); - } - - template inline xml_node xml_node::find_node(Predicate pred) const - { - if (!_root) return xml_node(); - - for (xml_node node = first_child(); node; node = node.next_sibling()) - { - if (pred(node)) - return node; - - if (node.first_child()) - { - xml_node found = node.find_node(pred); - if (found) return found; - } - } - - return xml_node(); - } -} - #endif -- cgit v1.2.3