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/aboutdialog.h

29 lines
464 B

// SPDX-License-Identifier: BSD-3-Clause
// 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:
QStringListModel *m_model;
Ui::AboutDialog *ui;
};
#endif // ABOUT_H