本文整理汇总了C++中QDomAttr::localName方法的典型用法代码示例。如果您正苦于以下问题:C++ QDomAttr::localName方法的具体用法?C++ QDomAttr::localName怎么用?C++ QDomAttr::localName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDomAttr
的用法示例。
在下文中一共展示了QDomAttr::localName方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setAttribute
void Language::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("Value", Qt::CaseInsensitive)==0) {
setValue(attr.value());
return;
}
if(attr.localName().compare("Lang", Qt::CaseInsensitive)==0) {
setLang(attr.value());
return;
}
}
示例2: setAttribute
void PreviouslyShown::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("Channel", Qt::CaseInsensitive)==0) {
setChannel(attr.value());
return;
}
if(attr.localName().compare("Start", Qt::CaseInsensitive)==0) {
setStart(attr.value());
return;
}
}
示例3: setAttribute
void Programme::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("VpsStart", Qt::CaseInsensitive)==0) {
setVpsStart(attr.value());
return;
}
if(attr.localName().compare("Channel", Qt::CaseInsensitive)==0) {
setChannel(attr.value());
return;
}
if(attr.localName().compare("Showview", Qt::CaseInsensitive)==0) {
setShowview(attr.value());
return;
}
if(attr.localName().compare("Start", Qt::CaseInsensitive)==0) {
setStart(attr.value());
return;
}
if(attr.localName().compare("Stop", Qt::CaseInsensitive)==0) {
setStop(attr.value());
return;
}
if(attr.localName().compare("Clumpidx", Qt::CaseInsensitive)==0) {
setClumpidx(attr.value());
return;
}
if(attr.localName().compare("PdcStart", Qt::CaseInsensitive)==0) {
setPdcStart(attr.value());
return;
}
if(attr.localName().compare("Videoplus", Qt::CaseInsensitive)==0) {
setVideoplus(attr.value());
return;
}
}
示例4: setAttribute
void Tv::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("SourceInfoUrl", Qt::CaseInsensitive)==0) {
setSourceInfoUrl(attr.value());
return;
}
if(attr.localName().compare("SourceDataUrl", Qt::CaseInsensitive)==0) {
setSourceDataUrl(attr.value());
return;
}
if(attr.localName().compare("Date", Qt::CaseInsensitive)==0) {
setDate(attr.value());
return;
}
if(attr.localName().compare("GeneratorInfoName", Qt::CaseInsensitive)==0) {
setGeneratorInfoName(attr.value());
return;
}
if(attr.localName().compare("SourceInfoName", Qt::CaseInsensitive)==0) {
setSourceInfoName(attr.value());
return;
}
if(attr.localName().compare("GeneratorInfoUrl", Qt::CaseInsensitive)==0) {
setGeneratorInfoUrl(attr.value());
return;
}
}
示例5: setAttribute
void Subtitles::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("Type", Qt::CaseInsensitive)==0) {
setType(attr.value());
return;
}
}
示例6: setAttribute
void Rating::setAttribute( QDomAttr &attr) {
if(attr.localName().compare("System", Qt::CaseInsensitive)==0) {
setSystem(attr.value());
return;
}
}