mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-24 11:35:52 +00:00
29 lines
518 B
C++
29 lines
518 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_KEYSDIALOG_H
|
|
#define FEATHER_KEYSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class KeysDialog;
|
|
}
|
|
|
|
class KeysDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit KeysDialog(Wallet *wallet, QWidget *parent = nullptr);
|
|
~KeysDialog() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::KeysDialog> ui;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_KEYSDIALOG_H
|