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 14 namespace QGBA { 15 16 class CoreController; 17 18 class ROMInfo : public QDialog { 19 Q_OBJECT 20 21 public: 22 ROMInfo(std::shared_ptr<CoreController> controller, QWidget* parent = nullptr); 23 24 private: 25 Ui::ROMInfo m_ui; 26 }; 27 28 } 29