pollymc/api/logic/InstanceCopyTask.h

32 lines
746 B
C
Raw Normal View History

2016-10-03 04:25:54 +05:30
#pragma once
#include "tasks/Task.h"
#include "multimc_logic_export.h"
#include "net/NetJob.h"
#include <QUrl>
#include <QFuture>
#include <QFutureWatcher>
2016-10-03 04:25:54 +05:30
#include "settings/SettingsObject.h"
#include "BaseVersion.h"
#include "BaseInstance.h"
2018-03-19 07:06:12 +05:30
#include "InstanceTask.h"
2018-03-19 07:06:12 +05:30
class MULTIMC_LOGIC_EXPORT InstanceCopyTask : public InstanceTask
2016-10-03 04:25:54 +05:30
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2016-10-03 04:25:54 +05:30
public:
2018-07-15 18:21:05 +05:30
explicit InstanceCopyTask(InstancePtr origInstance, bool copySaves);
2016-10-03 04:25:54 +05:30
protected:
2018-07-15 18:21:05 +05:30
//! Entry point for tasks.
virtual void executeTask() override;
void copyFinished();
void copyAborted();
2016-10-03 04:25:54 +05:30
private: /* data */
2018-07-15 18:21:05 +05:30
InstancePtr m_origInstance;
QFuture<bool> m_copyFuture;
QFutureWatcher<bool> m_copyFutureWatcher;
std::unique_ptr<IPathMatcher> m_matcher;
2016-10-03 04:25:54 +05:30
};