mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-25 03:45:53 +00:00
28 lines
480 B
C++
28 lines
480 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_ABOUT_H
|
|
#define FEATHER_ABOUT_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringListModel>
|
|
|
|
#include "components.h"
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
|
~AboutDialog() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::AboutDialog> ui;
|
|
};
|
|
|
|
#endif // FEATHER_ABOUT_H
|