mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 13:20:04 +00:00
common: Remove dependency from core
This commit is contained in:
parent
ba98bf058a
commit
9527bfffed
14 changed files with 105 additions and 96 deletions
|
@ -10,13 +10,17 @@ namespace Ui {
|
|||
class DumpingDialog;
|
||||
}
|
||||
|
||||
namespace Core {
|
||||
class System;
|
||||
}
|
||||
|
||||
class QLineEdit;
|
||||
|
||||
class DumpingDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DumpingDialog(QWidget* parent);
|
||||
explicit DumpingDialog(QWidget* parent, Core::System& system);
|
||||
~DumpingDialog() override;
|
||||
|
||||
QString GetFilePath() const;
|
||||
|
@ -32,6 +36,7 @@ private:
|
|||
QLineEdit* line_edit);
|
||||
|
||||
std::unique_ptr<Ui::DumpingDialog> ui;
|
||||
Core::System& system;
|
||||
|
||||
QString last_path;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue