pugixmlpugi::xml_node
を使用して既存のものを別のものに追加する方法は? 私が知っている唯一の機能は次のとおりです。
pugi::xml_node node = root.append_child("child");
pugixmlpugi::xml_node
を使用して既存のものを別のものに追加する方法は? 私が知っている唯一の機能は次のとおりです。
pugi::xml_node node = root.append_child("child");
私もこの方法を見つけました: http://pugixml.googlecode.com/svn/tags/release-0.9/docs/manual/modify.html
xml_node xml_node::append_child(xml_node_type type = node_element);
xml_node xml_node::insert_child_after(xml_node_type type, const xml_node& node);
xml_node xml_node::insert_child_before(xml_node_type type, const xml_node& node);
insert_child_after と insert_child_before は、指定されたノード/属性の前または後に (既存の) ノードを追加します。