| 4802 | } |
| 4803 | |
| 4804 | PUGI__FN xml_node xml_node::append_child(xml_node_type type_) |
| 4805 | { |
| 4806 | if (!impl::allow_insert_child(this->type(), type_)) |
| 4807 | return xml_node(); |
| 4808 | |
| 4809 | xml_node n(impl::append_node(_root, impl::get_allocator(_root), type_)); |
| 4810 | |
| 4811 | if (type_ == node_declaration) |
| 4812 | n.set_name(PUGIXML_TEXT("xml")); |
| 4813 | |
| 4814 | return n; |
| 4815 | } |
| 4816 | |
| 4817 | PUGI__FN xml_node xml_node::prepend_child(xml_node_type type_) |
| 4818 | { |