| 4780 | } |
| 4781 | |
| 4782 | PUGI__FN xml_attribute xml_node::insert_copy_after(const xml_attribute& proto, const xml_attribute& attr) |
| 4783 | { |
| 4784 | if (!proto) |
| 4785 | return xml_attribute(); |
| 4786 | |
| 4787 | xml_attribute result = insert_attribute_after(proto.name(), attr); |
| 4788 | result.set_value(proto.value()); |
| 4789 | |
| 4790 | return result; |
| 4791 | } |
| 4792 | |
| 4793 | PUGI__FN xml_attribute xml_node::insert_copy_before(const xml_attribute& proto, const xml_attribute& attr) |
| 4794 | { |
nothing calls this directly
no test coverage detected