| 5007 | } |
| 5008 | |
| 5009 | PUGI__FN xml_attribute xml_node::append_copy(const xml_attribute& proto) |
| 5010 | { |
| 5011 | if (!proto) return xml_attribute(); |
| 5012 | |
| 5013 | xml_attribute result = append_attribute(proto.name()); |
| 5014 | result.set_value(proto.value()); |
| 5015 | |
| 5016 | return result; |
| 5017 | } |
| 5018 | |
| 5019 | PUGI__FN xml_attribute xml_node::prepend_copy(const xml_attribute& proto) |
| 5020 | { |
nothing calls this directly
no test coverage detected