dolphin/Source/Core/DolphinQt/AboutDialog.h
Augustin Cavalier 69cd8229d8 Fixes to the About dialog & add the SystemInfo dialog.
Also fix the build on Mac OS X.
2014-10-25 20:59:07 -04:00

26 lines
406 B
C++

// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <QDialog>
// Predefinitions
namespace Ui {
class DAboutDialog;
}
class DAboutDialog : public QDialog
{
Q_OBJECT
public:
explicit DAboutDialog(QWidget* parent_widget = nullptr);
~DAboutDialog();
private:
std::unique_ptr<Ui::DAboutDialog> m_ui;
};