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