mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:28 +02:00
28 lines
419 B
C
28 lines
419 B
C
|
// Copyright 2014 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
// Predefinitions
|
||
|
namespace Ui {
|
||
|
class DAboutDialog;
|
||
|
}
|
||
|
|
||
|
class DAboutDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DAboutDialog(QWidget *p = 0);
|
||
|
~DAboutDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_label_linkActivated(const QString &link);
|
||
|
|
||
|
private:
|
||
|
Ui::DAboutDialog *ui;
|
||
|
};
|