コード例 #1
0
void AXMLElement::AddAttribute(const char* pAttributeName,const char* pAttributeValue) {
	VString attribute;
	VString value;
	attribute.FromCString(pAttributeName);
	value.FromCString(pAttributeValue);
	AddAttribute(attribute,value);
}
コード例 #2
0
AXMLElement* AXMLElement::AddChild(const char* pChildName) {

	VString		childname;
	childname.FromCString(pChildName);
	return AddChild(childname);
}
コード例 #3
0
void AXMLElement::AddCDATA(const char* pCData)
{
	VString cdata;
	cdata.FromCString(pCData);
	AddCDATA(cdata);
}
コード例 #4
0
void AXMLElement::AddComment(const char* pComment)
{
	VString comment;
	comment.FromCString(pComment);
	AddComment(comment);
}
コード例 #5
0
void AXMLElement::AddText(const char* pText)
{
	VString text;
	text.FromCString(pText);
	AddText(text);
}