нахождение элемнета по его атрибуту
| 474 | |
| 475 | //нахождение элемнета по его атрибуту |
| 476 | XML_NODE* CXml::SearchForAttribute(LPCSTR path, int index, LPCSTR tag_name, LPCSTR attrib, LPCSTR attrib_value_pattern) |
| 477 | { |
| 478 | XML_NODE* start_node = NavigateToNode(path, index); |
| 479 | XML_NODE* result = SearchForAttribute(start_node, tag_name, attrib, attrib_value_pattern); |
| 480 | return result; |
| 481 | } |
| 482 | |
| 483 | XML_NODE* CXml::SearchForAttribute(XML_NODE* start_node, LPCSTR tag_name, LPCSTR attrib, LPCSTR attrib_value_pattern) |
| 484 | { |
nothing calls this directly
no test coverage detected