ControllerEmu: Replace includes with forward declarations

Replaces includes with forward declarations where applicable, and moves
includes to where they're actually needed.
This commit is contained in:
Lioncash
2017-04-04 15:37:31 -04:00
parent 9d0a78db20
commit 14c81764df
13 changed files with 17 additions and 6 deletions

View File

@ -23,12 +23,12 @@
#include <wx/spinctrl.h>
#include <wx/timer.h>
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
#include "InputCommon/ControllerInterface/Device.h"
class ControlReference;
class DolphinSlider;
class InputConfig;
class InputConfigDialog;
class wxComboBox;
class wxListBox;
class wxStaticBitmap;
@ -37,8 +37,11 @@ class wxTextCtrl;
namespace ControllerEmu
{
class BooleanSetting;
class ControlGroup;
class EmulatedController;
class Extension;
class NumericSetting;
}
class PadSetting
@ -99,8 +102,6 @@ private:
bool m_block = false;
};
class InputConfigDialog;
class ControlDialog : public wxDialog
{
public: