本文整理汇总了C++中PlaylistItem::setURI方法的典型用法代码示例。如果您正苦于以下问题:C++ PlaylistItem::setURI方法的具体用法?C++ PlaylistItem::setURI怎么用?C++ PlaylistItem::setURI使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PlaylistItem
的用法示例。
在下文中一共展示了PlaylistItem::setURI方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: readFile
void PLSimport::readFile()
{
QFile file(filename);
if (!file.open(QFile::ReadOnly)) {
return;
}
QTextStream is(&file);
PlaylistItem* p;
// QString* duration;
// QString* title;
QString* uri;
QRegExp rxlen("=");
QRegExp rxlen2("(\\d+)");
int pos=-1;
is.readLine();
int i = rxlen2.indexIn(is.readLine());
if(i>-1)
i = rxlen2.cap(1).toInt();
is.readLine();
for(int j = 0 ;j<i;j++)
{
p= new PlaylistItem;
uri = new QString;
*uri = is.readLine();
pos = rxlen.indexIn(*uri);
if (pos > -1)
{
uri->remove(0, pos+1);
}
is.readLine();
is.readLine();
is.readLine();
p->setURI(*uri);
result->append(p);
}
}