TASInputDlg: Replace includes with forward declarations
This commit is contained in:
parent
2a968f02d7
commit
9dd29895cd
|
@ -6,20 +6,23 @@
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
#include <wx/bitmap.h>
|
|
||||||
#include <wx/dcmemory.h>
|
|
||||||
#include <wx/dialog.h>
|
#include <wx/dialog.h>
|
||||||
#include <wx/sizer.h>
|
#include <wx/sizer.h>
|
||||||
|
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
#include "Core/HW/WiimoteEmu/WiimoteEmu.h"
|
|
||||||
#include "InputCommon/GCPadStatus.h"
|
|
||||||
|
|
||||||
class DolphinSlider;
|
class DolphinSlider;
|
||||||
|
struct GCPadStatus;
|
||||||
|
class wxBitmap;
|
||||||
class wxCheckBox;
|
class wxCheckBox;
|
||||||
class wxStaticBitmap;
|
class wxStaticBitmap;
|
||||||
class wxTextCtrl;
|
class wxTextCtrl;
|
||||||
|
|
||||||
|
namespace WiimoteEmu
|
||||||
|
{
|
||||||
|
struct ReportFeatures;
|
||||||
|
}
|
||||||
|
|
||||||
class TASInputDlg : public wxDialog
|
class TASInputDlg : public wxDialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue