| 9525 | } |
| 9526 | |
| 9527 | xpath_node xml_node::select_single_node(const char_t* query, xpath_variable_set* variables) const |
| 9528 | { |
| 9529 | xpath_query q(query, variables); |
| 9530 | return select_single_node(q); |
| 9531 | } |
| 9532 | |
| 9533 | xpath_node xml_node::select_single_node(const xpath_query& query) const |
| 9534 | { |
nothing calls this directly
no test coverage detected