| 4769 | } |
| 4770 | |
| 4771 | PUGI__FN xml_attribute xml_node::prepend_copy(const xml_attribute& proto) |
| 4772 | { |
| 4773 | if (!proto) |
| 4774 | return xml_attribute(); |
| 4775 | |
| 4776 | xml_attribute result = prepend_attribute(proto.name()); |
| 4777 | result.set_value(proto.value()); |
| 4778 | |
| 4779 | return result; |
| 4780 | } |
| 4781 | |
| 4782 | PUGI__FN xml_attribute xml_node::insert_copy_after(const xml_attribute& proto, const xml_attribute& attr) |
| 4783 | { |
nothing calls this directly
no test coverage detected