rpcs3/rpcs3/rpcs3qt/save_data_info_dialog.h
Robbie 5cc152b8dd Save Data Note (#3054)
* Split save_data_utility into two classes.

* Add entry notes to saves.

* Code review changes
2017-07-23 10:55:08 +03:00

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;
};