feather/src/dialog/AboutDialog.h

29 lines
480 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.
2021-06-27 12:51:15 +00:00
#ifndef FEATHER_ABOUT_H
#define FEATHER_ABOUT_H
#include <QDialog>
#include <QStringListModel>
2021-10-22 17:19:56 +00:00
#include "components.h"
namespace Ui {
class AboutDialog;
}
2021-10-22 17:19:56 +00:00
class AboutDialog : public WindowModalDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog() override;
private:
2021-06-27 12:13:05 +00:00
QScopedPointer<Ui::AboutDialog> ui;
};
2021-06-27 12:51:15 +00:00
#endif // FEATHER_ABOUT_H