我一直在使用boost库来解析XML文件,我必须手动创建一个ptree。我需要向ptree添加几个具有相同标记名称的子项。我尝试过put,add_child和put_child,但是我无法做到。 我需要创建的ptree应该像下面给出的那样(xml表示):
<onexit>
<assign location="test1"></assign>
<assign location="test2"></assign>
<assign location="test3"></assign>
</onexit>
我需要做什么?