wowlet/src/dialog/seeddialog.h

30 lines
497 B
C
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 09:52:29 +00:00
#ifndef WOWLET_SEEDDIALOG_H
#define WOWLET_SEEDDIALOG_H
#include <QDialog>
2020-11-11 22:09:35 +00:00
#include "libwalletqt/Wallet.h"
namespace Ui {
class SeedDialog;
}
class SeedDialog : public QDialog
{
Q_OBJECT
public:
2020-11-11 22:09:35 +00:00
explicit SeedDialog(Wallet *wallet, QWidget *parent = nullptr);
~SeedDialog() override;
private:
2020-11-11 22:09:35 +00:00
void setSeed(const QString &seed);
Ui::SeedDialog *ui;
};
2021-03-30 09:52:29 +00:00
#endif //WOWLET_SEEDDIALOG_H