#pragma once // I just want the struct for the save data. #include "Emu/Cell/Modules/cellSaveData.h" #include #include //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; };