我正在使用pugixml库来读写xml文件。
如何将"克隆"深度复制到 pugixml 库中的xml_document对象?
这是最简单的选择:
xml_document copy;
copy.reset(doc);
如果需要更细粒度,可以在单个节点上使用copy.append_copy()
。