pollymc/launcher/minecraft/legacy/LegacyUpgradeTask.h

30 lines
609 B
C
Raw Normal View History

2017-09-21 03:08:31 +05:30
#pragma once
2018-03-19 07:06:12 +05:30
#include "InstanceTask.h"
2017-09-21 03:08:31 +05:30
#include "net/NetJob.h"
#include <QUrl>
#include <QFuture>
#include <QFutureWatcher>
#include "settings/SettingsObject.h"
#include "BaseVersion.h"
#include "BaseInstance.h"
class LegacyUpgradeTask : public InstanceTask
2017-09-21 03:08:31 +05:30
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2017-09-21 03:08:31 +05:30
public:
2018-07-15 18:21:05 +05:30
explicit LegacyUpgradeTask(InstancePtr origInstance);
2017-09-21 03:08:31 +05:30
protected:
2018-07-15 18:21:05 +05:30
//! Entry point for tasks.
virtual void executeTask() override;
void copyFinished();
void copyAborted();
2017-09-21 03:08:31 +05:30
private: /* data */
2018-07-15 18:21:05 +05:30
InstancePtr m_origInstance;
QFuture<bool> m_copyFuture;
QFutureWatcher<bool> m_copyFutureWatcher;
2017-09-21 03:08:31 +05:30
};