mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-11 05:15:21 +00:00
28 lines
507 B
C
28 lines
507 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_PASSWORDDIALOG_H
|
||
|
#define FEATHER_PASSWORDDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class PasswordDialog;
|
||
|
}
|
||
|
|
||
|
class PasswordDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit PasswordDialog(QWidget *parent, const QString &walletName, bool incorrectPassword);
|
||
|
~PasswordDialog() override;
|
||
|
|
||
|
QString password = "";
|
||
|
|
||
|
private:
|
||
|
Ui::PasswordDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif //FEATHER_PASSWORDDIALOG_H
|