27 lines
621 B
C
27 lines
621 B
C
|
#pragma once
|
||
|
|
||
|
#include <QDir>
|
||
|
|
||
|
#include "tasks/Task.h"
|
||
|
#include "modplatform/ModIndex.h"
|
||
|
|
||
|
class LocalModUpdateTask : public Task {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
using Ptr = shared_qobject_ptr<LocalModUpdateTask>;
|
||
|
|
||
|
explicit LocalModUpdateTask(QDir mods_dir, ModPlatform::IndexedPack& mod, ModPlatform::IndexedVersion& mod_version);
|
||
|
|
||
|
bool canAbort() const override { return true; }
|
||
|
bool abort() override;
|
||
|
|
||
|
protected slots:
|
||
|
//! Entry point for tasks.
|
||
|
void executeTask() override;
|
||
|
|
||
|
private:
|
||
|
QDir m_index_dir;
|
||
|
ModPlatform::IndexedPack& m_mod;
|
||
|
ModPlatform::IndexedVersion& m_mod_version;
|
||
|
};
|