2017-11-04 23:29:27 +05:30
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-08-25 18:15:50 +05:30
|
|
|
#pragma once
|
2017-11-04 23:29:27 +05:30
|
|
|
|
2018-08-25 18:15:50 +05:30
|
|
|
#include <memory>
|
2017-11-04 23:29:27 +05:30
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AboutDialog(QWidget* parent = 0);
|
2018-08-24 20:44:09 +05:30
|
|
|
~AboutDialog() override;
|
2017-11-04 23:29:27 +05:30
|
|
|
|
|
|
|
private:
|
2018-08-25 18:15:50 +05:30
|
|
|
std::unique_ptr<Ui::AboutDialog> ui;
|
2017-11-04 23:29:27 +05:30
|
|
|
};
|