This comes from pugi::impl::is_text_node
| 18 | |
| 19 | // This comes from pugi::impl::is_text_node |
| 20 | inline bool is_text_node(const xml_node& node) |
| 21 | { |
| 22 | xml_node_type type = node.type(); |
| 23 | |
| 24 | return type == node_pcdata || type == node_cdata; |
| 25 | } |
| 26 | |
| 27 | xml_node_extra::xml_node_extra(xml_node child) : xml_node(child) |
| 28 | { |