mirror of
https://github.com/dashpay/dash.git
synced 2024-12-30 14:25:53 +01:00
30 lines
495 B
C++
30 lines
495 B
C++
#ifndef EDITADDRESSDIALOG_H
|
|
#define EDITADDRESSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class EditAddressDialog;
|
|
}
|
|
|
|
class EditAddressDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Mode {
|
|
NewReceivingAddress,
|
|
NewSendingAddress,
|
|
EditReceivingAddress,
|
|
EditSendingAddress
|
|
};
|
|
|
|
explicit EditAddressDialog(Mode mode, QWidget *parent = 0);
|
|
~EditAddressDialog();
|
|
|
|
private:
|
|
Ui::EditAddressDialog *ui;
|
|
};
|
|
|
|
#endif // EDITADDRESSDIALOG_H
|