feather/src/dialog/AboutDialog.h

29 lines
479 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.
#ifndef ABOUT_H
#define ABOUT_H
#include <QDialog>
#include <QStringListModel>
#include <QAbstractButton>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog() override;
private:
2021-06-27 12:13:05 +00:00
QScopedPointer<Ui::AboutDialog> ui;
2021-05-10 13:20:33 +00:00
QStringListModel *m_model;
};
#endif // ABOUT_H