示例#1
0
文件: xml.hpp 项目: oeuftete/wx-xword
inline void Append(node node, const char * name, const string_t & value)
{
    SetText(node.append_child(name), value);
}
示例#2
0
文件: xml.hpp 项目: oeuftete/wx-xword
inline void SetText(node node, const char * text)
{
    node.append_child(pugi::node_pcdata).set_value(text);
}