コード例 #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);
}