You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/dialog/seeddialog.h

27 lines
428 B

// 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