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#ifndef QGBA_ABOUT_SCREEN
7#define QGBA_ABOUT_SCREEN
8
9#include <QDialog>
10
11#include "ui_AboutScreen.h"
12
13namespace QGBA {
14
15class AboutScreen : public QDialog {
16Q_OBJECT
17
18public:
19 AboutScreen(QWidget* parent = nullptr);
20
21private:
22 Ui::AboutScreen m_ui;
23};
24
25}
26
27#endif