src/platform/qt/ROMInfo.h (view raw)
1/* Copyright (c) 2013-2015 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_ROM_INFO
7#define QGBA_ROM_INFO
8
9#include <QWidget>
10
11#include "ui_ROMInfo.h"
12
13extern "C" {
14#include "gba/supervisor/thread.h"
15}
16
17namespace QGBA {
18
19class GameController;
20
21class ROMInfo : public QDialog {
22Q_OBJECT
23
24public:
25 ROMInfo(GameController* controller, QWidget* parent = nullptr);
26
27private:
28 Ui::ROMInfo m_ui;
29};
30
31}
32
33#endif