【文件属性】:
文件名称:XML Tree Class (make xml parsing easy)
文件大小:517KB
文件格式:7Z
更新时间:2012-01-29 08:52:46
xml parse tree
解析xml文件或者string更加容易,使用简单
支持unicode,multibytes编码
class CXmlTree
{
public:
BOOL fromXml(const TCHAR* pszSource, BOOL bFromFile);
CXmlTree* getSubNode(const vector* vecPath);
void getChildren(const tstring& strChildName, vector* pRetVec);
BOOL addAttrib(const tstring& strName, const tstring& strVal);
tstring getAttrib(const tstring& strName);
tstring getName();
tstring& getData();
int getChildrenCount();
BOOL isHasChildren();
CXmlTree* getChildAt(int nIndex);
};