You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
428 B

#include <QTextStream>
#include "generator.h"
QTextStream& operator<< (QTextStream& str, const PixmapRequest *req)
{
QString s("");
if (req->async)
s += "As";
else
s += "S";
s += QString ("ync PixmapRequest (id: %1) (%2x%3) ").arg(req->id,req->width,req->height);
s += QString("prio: %1, pageNo: %2) ").arg(req->priority,req->pageNumber);
return (str << s);
}
#include "generator.moc"