本文整理汇总了C++中VString::FromCString方法的典型用法代码示例。如果您正苦于以下问题:C++ VString::FromCString方法的具体用法?C++ VString::FromCString怎么用?C++ VString::FromCString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VString
的用法示例。
在下文中一共展示了VString::FromCString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddAttribute
void AXMLElement::AddAttribute(const char* pAttributeName,const char* pAttributeValue) {
VString attribute;
VString value;
attribute.FromCString(pAttributeName);
value.FromCString(pAttributeValue);
AddAttribute(attribute,value);
}
示例2: AddChild
AXMLElement* AXMLElement::AddChild(const char* pChildName) {
VString childname;
childname.FromCString(pChildName);
return AddChild(childname);
}
示例3: AddCDATA
void AXMLElement::AddCDATA(const char* pCData)
{
VString cdata;
cdata.FromCString(pCData);
AddCDATA(cdata);
}
示例4: AddComment
void AXMLElement::AddComment(const char* pComment)
{
VString comment;
comment.FromCString(pComment);
AddComment(comment);
}
示例5: AddText
void AXMLElement::AddText(const char* pText)
{
VString text;
text.FromCString(pText);
AddText(text);
}