mirror of
https://github.com/feather-wallet/feather.git
synced 2025-02-04 20:26:36 +00:00
29 lines
463 B
C
29 lines
463 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef ABOUT_H
|
||
|
#define ABOUT_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QStandardItemModel>
|
||
|
#include <QAbstractButton>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AboutDialog;
|
||
|
}
|
||
|
|
||
|
class AboutDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutDialog(QWidget *parent = nullptr);
|
||
|
~AboutDialog() override;
|
||
|
|
||
|
private:
|
||
|
QStandardItemModel *m_model;
|
||
|
Ui::AboutDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ABOUT_H
|