rpcsx/rpcs3/rpcs3qt/save_data_info_dialog.h
2021-04-09 21:03:49 +02:00

22 lines
421 B
C++

#pragma once
// I just want the struct for the save data.
#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(SaveDataEntry save, QWidget* parent = nullptr);
private:
void UpdateData();
SaveDataEntry m_entry;
QTableWidget* m_list;
};