mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-08 16:10:02 +01:00
22 lines
560 B
C++
22 lines
560 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
class UserDataMigrator {
|
|
public:
|
|
UserDataMigrator(QMainWindow* main_window);
|
|
|
|
private:
|
|
enum class LegacyEmu {
|
|
Citra,
|
|
Lime3DS,
|
|
};
|
|
|
|
void ShowMigrationPrompt(QMainWindow* main_window);
|
|
void ShowMigrationCancelledMessage(QMainWindow* main_window);
|
|
void MigrateUserData(QMainWindow* main_window, const LegacyEmu selected_legacy_emu);
|
|
}; |