mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
* Split save_data_utility into two classes. * Add entry notes to saves. * Code review changes
23 lines
479 B
C++
23 lines
479 B
C++
#pragma once
|
|
|
|
// I just want the struct for the save data.
|
|
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/Cell/Modules/cellSaveData.h"
|
|
|
|
#include <QDialog>
|
|
#include <QTableWidget>
|
|
|
|
//Used to display the information of a savedata.
|
|
class save_data_info_dialog :public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit save_data_info_dialog(const SaveDataEntry& save, QWidget* parent = nullptr);
|
|
private:
|
|
void UpdateData();
|
|
|
|
SaveDataEntry m_entry;
|
|
QTableWidget* m_list;
|
|
};
|