mirror of
https://github.com/feather-wallet/feather.git
synced 2025-02-03 19:56:33 +00:00
28 lines
511 B
C++
28 lines
511 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#ifndef FEATHER_INFODIALOG_H
|
|
#define FEATHER_INFODIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
|
|
namespace Ui {
|
|
class InfoDialog;
|
|
}
|
|
|
|
class InfoDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InfoDialog(QWidget *parent, const QString &title, const QString &infoText);
|
|
~InfoDialog() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::InfoDialog> ui;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_INFODIALOG_H
|