| 4758 | } |
| 4759 | |
| 4760 | PUGI__FN xml_attribute xml_node::append_copy(const xml_attribute& proto) |
| 4761 | { |
| 4762 | if (!proto) |
| 4763 | return xml_attribute(); |
| 4764 | |
| 4765 | xml_attribute result = append_attribute(proto.name()); |
| 4766 | result.set_value(proto.value()); |
| 4767 | |
| 4768 | return result; |
| 4769 | } |
| 4770 | |
| 4771 | PUGI__FN xml_attribute xml_node::prepend_copy(const xml_attribute& proto) |
| 4772 | { |
nothing calls this directly
no test coverage detected