27 lines
418 B
C++
27 lines
418 B
C++
#ifndef DELETECARDDIALOG_H
|
|
#define DELETECARDDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class DeleteCardDialog;
|
|
}
|
|
|
|
class DeleteCardDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DeleteCardDialog(QWidget *parent = nullptr);
|
|
~DeleteCardDialog();
|
|
signals:
|
|
void trueDelete();
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
private:
|
|
Ui::DeleteCardDialog *ui;
|
|
};
|
|
|
|
#endif // DELETECARDDIALOG_H
|