mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -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:
|
||||
|
Reference in New Issue
Block a user