是否可以通过指示层次结构路径来创建带有MSXML的xml树?

时间:2015-06-29 01:05:08

标签: xml msxml

在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;
&#13;
&#13;

是否可以使用MSXML获得类似的结果?那就是创建树结构并将值赋予xml,类似于层次结构路径:&#34; debug.filename&#34;?如果是,怎么样?

0 个答案:

没有答案