コード例 #1
0
ファイル: XmlFile.cpp プロジェクト: Braunson/openitg
const char* XNode::GetChildAttrValue( const char* name, const char* attrname )
{
	XAttr *attr = GetChildAttr( name, attrname );
	return attr ? (const char*)attr->m_sValue : NULL;
}
コード例 #2
0
ファイル: XMLite.cpp プロジェクト: Bill48105/hmailserver
LPCTSTR _tagXMLNode::GetChildAttrValue( LPCTSTR name, LPCTSTR attrname )
{
	LPXAttr attr = GetChildAttr( name, attrname );
	return attr ? (LPCTSTR)attr->value : NULL;
}