| 13 | #include <QtConcurrent> |
| 14 | |
| 15 | DataMigrationTask::DataMigrationTask(const QString& sourcePath, const QString& targetPath, const IPathMatcher::Ptr pathMatcher) |
| 16 | : Task(), m_sourcePath(sourcePath), m_targetPath(targetPath), m_pathMatcher(pathMatcher), m_copy(sourcePath, targetPath) |
| 17 | { |
| 18 | m_copy.matcher(m_pathMatcher.get()).whitelist(true); |
| 19 | } |
| 20 | |
| 21 | void DataMigrationTask::executeTask() |
| 22 | { |