src/platform/qt/AboutScreen.h (view raw)
1/* Copyright (c) 2013-2014 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#pragma once
7
8#include <QDialog>
9
10#include "ui_AboutScreen.h"
11
12namespace QGBA {
13
14class AboutScreen : public QDialog {
15Q_OBJECT
16
17public:
18 AboutScreen(QWidget* parent = nullptr);
19
20private:
21 Ui::AboutScreen m_ui;
22};
23
24}