| 5037 | } |
| 5038 | |
| 5039 | PUGI__FN xml_attribute xml_node::insert_copy_before(const xml_attribute& proto, const xml_attribute& attr) |
| 5040 | { |
| 5041 | if (!proto) return xml_attribute(); |
| 5042 | |
| 5043 | xml_attribute result = insert_attribute_before(proto.name(), attr); |
| 5044 | result.set_value(proto.value()); |
| 5045 | |
| 5046 | return result; |
| 5047 | } |
| 5048 | |
| 5049 | PUGI__FN xml_node xml_node::append_child(xml_node_type type_) |
| 5050 | { |
nothing calls this directly
no test coverage detected