mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
PatchesWidget: Convert Core and UICommon includes into forward declarations
Avoids propagating inclusions through UI headers
This commit is contained in:
parent
df3f9af6d7
commit
799e4154be
2 changed files with 16 additions and 2 deletions
|
@ -9,13 +9,22 @@
|
|||
|
||||
#include <QWidget>
|
||||
|
||||
#include "Core/PatchEngine.h"
|
||||
#include "UICommon/GameFile.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace PatchEngine
|
||||
{
|
||||
struct Patch;
|
||||
}
|
||||
|
||||
class QListWidget;
|
||||
class QListWidgetItem;
|
||||
class QPushButton;
|
||||
|
||||
namespace UICommon
|
||||
{
|
||||
class GameFile;
|
||||
}
|
||||
|
||||
class PatchesWidget : public QWidget
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue