| 221 | QScopedPointer<Transform> stream(wrapTransform(pipeline.data(), "Stream(readMode=StreamGallery, endPoint="+outputDesc+")")); |
| 222 | |
| 223 | foreach (const br::File &file, input.split()) { |
| 224 | qDebug("Enrolling %s%s", qPrintable(file.name), |
| 225 | gallery.isNull() ? "" : qPrintable(" to " + gallery.flat())); |
| 226 | |
| 227 | Gallery *temp = Gallery::make(file); |
| 228 | qint64 total = temp->totalSize(); |
| 229 | delete temp; |
| 230 | |
| 231 | progressCounter->setPropertyRecursive("totalProgress", QString::number(total)); |
| 232 | |
| 233 | TemplateList data, output; |
| 234 | data.append(file); |
| 235 | |
| 236 | stream->projectUpdate(data, output); |
| 237 | } |
| 238 | |
| 239 | if (multiProcess) |
| 240 | delete enroll; |
nothing calls this directly
no test coverage detected