2014-09-14 15:03:07 -04:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-09-14 17:44:07 -07:00
|
|
|
#include <memory>
|
2014-09-14 15:03:07 -04:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
// Predefinitions
|
2014-10-27 13:11:39 -04:00
|
|
|
namespace Ui
|
|
|
|
{
|
2014-09-14 15:03:07 -04:00
|
|
|
class DAboutDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class DAboutDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-10-25 09:21:05 -04:00
|
|
|
explicit DAboutDialog(QWidget* parent_widget = nullptr);
|
2014-09-14 15:03:07 -04:00
|
|
|
~DAboutDialog();
|
|
|
|
|
|
|
|
private:
|
2014-10-25 09:21:05 -04:00
|
|
|
std::unique_ptr<Ui::DAboutDialog> m_ui;
|
2014-09-14 15:03:07 -04:00
|
|
|
};
|