在boost属性树中,我可以执行以下操作:
// Create an empty property tree object
using boost::property_tree::ptree;
ptree pt;
// Put log filename in property tree
pt.put("debug.filename", "test string");
这将允许创建具有以下结构的xml树:
<debug>
<filename>test string</filename>
</debug>
&#13;
是否可以使用MSXML获得类似的结果?那就是创建树结构并将值赋予xml,类似于层次结构路径:&#34; debug.filename&#34;?如果是,怎么样?