2020-09-10 19:26:41 +00:00
|
|
|
#pragma once
|
2020-09-04 00:26:25 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class EditAndResend;
|
|
|
|
}
|
|
|
|
|
2021-03-20 21:56:03 +00:00
|
|
|
//! EditAndResend Dialog
|
2020-09-04 00:26:25 +00:00
|
|
|
class EditAndResend : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-03-20 21:56:03 +00:00
|
|
|
//! EditAndResend constructor
|
2021-01-01 20:22:03 +00:00
|
|
|
explicit EditAndResend(std::tuple<QString, QString, QString, QString> initial, QWidget *parent = nullptr);
|
2020-09-04 00:26:25 +00:00
|
|
|
~EditAndResend();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::EditAndResend *ui;
|
|
|
|
};
|