Credentials_manager/PasswordManager/deletecarddialog.h
danylo-nevidomiy 6a5335c38f Many UI fixes
2022-01-31 20:12:59 +03:00

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