all repos — mgba @ db8bb29c5a7b7efcd4d086ee383870a2565792e2

mGBA Game Boy Advance Emulator

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#pragma once
 7
 8#include <QWidget>
 9
10#include <memory>
11
12#include "ui_ROMInfo.h"
13
14namespace QGBA {
15
16class CoreController;
17
18class ROMInfo : public QDialog {
19Q_OBJECT
20
21public:
22	ROMInfo(std::shared_ptr<CoreController> controller, QWidget* parent = nullptr);
23
24private:
25	Ui::ROMInfo m_ui;
26};
27
28}