2016-02-11 11:59:44 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class AboutDialog final : public QDialog
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
Q_OBJECT
|
2016-02-11 11:59:44 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
explicit AboutDialog(QWidget* parent = nullptr);
|
2016-02-11 11:59:44 +00:00
|
|
|
};
|