mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
27 lines
428 B
C
27 lines
428 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_SEEDDIALOG_H
|
||
|
#define FEATHER_SEEDDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class SeedDialog;
|
||
|
}
|
||
|
|
||
|
class SeedDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SeedDialog(const QString& seed, QWidget *parent = nullptr);
|
||
|
~SeedDialog() override;
|
||
|
|
||
|
private:
|
||
|
Ui::SeedDialog *ui;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //FEATHER_SEEDDIALOG_H
|