mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
27 lines
512 B
C++
27 lines
512 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, 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
|