diff options
| author | bunnei <bunneidev@gmail.com> | 2018-01-14 13:21:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-14 13:21:12 -0500 |
| commit | 7435dc53c8a3d9502232567cddcf3964e2dbab1e (patch) | |
| tree | 18bd77221697576ffba6cf50bf3c4f5b9ce02706 /src/yuzu/about_dialog.h | |
| parent | d3f421b9a602e439463c960823a53a60d4958a76 (diff) | |
| parent | c493bd9cc927f9119960e6dc084d374a2ec75d26 (diff) | |
Merge pull request #4 from spycrab/aboutdialog
Implement "About" dialog
Diffstat (limited to 'src/yuzu/about_dialog.h')
| -rw-r--r-- | src/yuzu/about_dialog.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/yuzu/about_dialog.h b/src/yuzu/about_dialog.h new file mode 100644 index 000000000..2eb6e28f5 --- /dev/null +++ b/src/yuzu/about_dialog.h @@ -0,0 +1,23 @@ +// Copyright 2018 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <memory> +#include <QDialog> + +namespace Ui { +class AboutDialog; +} + +class AboutDialog : public QDialog { + Q_OBJECT + +public: + explicit AboutDialog(QWidget* parent); + ~AboutDialog(); + +private: + std::unique_ptr<Ui::AboutDialog> ui; +}; |
