wowlet/src/dialog/aboutdialog.h
dsc 133700160a Feather, a free Monero desktop wallet
Co-Authored-By: tobtoht <thotbot@protonmail.com>
2020-10-08 04:31:22 +02:00

28 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