#ifndef SELECTRESTOREPOINT_H #define SELECTRESTOREPOINT_H #include "../backuppointlistdialog.h" class SelectRestorePoint : public BackupPointListDialog { Q_OBJECT public: enum BackupPointType { DATA, SYSTEM }; explicit SelectRestorePoint(QWidget *parent = nullptr, BackupPointType backupType = BackupPointType::SYSTEM); virtual ~SelectRestorePoint(); public slots: void initTableWidget(); private: void insertLines(const QList &backupPoints); private: BackupPointType m_backupType; }; #endif // SELECTRESTOREPOINT_H