prepend family
| 548 | |
| 549 | // prepend family |
| 550 | inline XMLElement * prepend_element (XMLElement * parent, const std::string & xpath) |
| 551 | { |
| 552 | return append_element (parent, xpath, {}, ""s, false); |
| 553 | } |
| 554 | |
| 555 | inline XMLElement * prepend_element (XMLElement * parent, const std::string & xpath, const attribute_list_t & attributes) |
| 556 | { |
nothing calls this directly
no test coverage detected