From 9dd29895cd249a75e4f576cf6f8acacae3e0f6a2 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 2 Apr 2017 08:16:26 -0400 Subject: [PATCH] TASInputDlg: Replace includes with forward declarations --- Source/Core/DolphinWX/TASInputDlg.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinWX/TASInputDlg.h b/Source/Core/DolphinWX/TASInputDlg.h index ea77486473..8696a5a1be 100644 --- a/Source/Core/DolphinWX/TASInputDlg.h +++ b/Source/Core/DolphinWX/TASInputDlg.h @@ -6,20 +6,23 @@ #include -#include -#include #include #include #include "Common/CommonTypes.h" -#include "Core/HW/WiimoteEmu/WiimoteEmu.h" -#include "InputCommon/GCPadStatus.h" class DolphinSlider; +struct GCPadStatus; +class wxBitmap; class wxCheckBox; class wxStaticBitmap; class wxTextCtrl; +namespace WiimoteEmu +{ +struct ReportFeatures; +} + class TASInputDlg : public wxDialog { public: