mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-27 21:15:19 +00:00
24 lines
479 B
C++
24 lines
479 B
C++
#pragma once
|
|
#include <QObject>
|
|
|
|
#include "QObjectPtr.h"
|
|
#include "minecraft/auth/AuthStep.h"
|
|
|
|
|
|
class ForcedMigrationStep : public AuthStep {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ForcedMigrationStep(AccountData *data);
|
|
virtual ~ForcedMigrationStep() noexcept;
|
|
|
|
void perform() override;
|
|
void rehydrate() override;
|
|
|
|
QString describe() override;
|
|
|
|
private slots:
|
|
void onRequestDone(QNetworkReply::NetworkError, QByteArray, QList<QNetworkReply::RawHeaderPair>);
|
|
};
|
|
|