diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2024-11-02 17:14:49 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2024-11-03 15:06:50 -0600 |
| commit | 346a9e0f97d4e17abb237a638896ef43db30488f (patch) | |
| tree | e303d6d9310459c823ae094fd63110b6da1777c9 /Source/Core/InputCommon/ControllerInterface/CoreDevice.h | |
| parent | 2f1390e9f9706a3c5c0bc46df17006ddf98d4cec (diff) | |
InputCommon: Move FullAnalogSurface class definition out of header file.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/CoreDevice.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/CoreDevice.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h index b34e6a9d15..cd8256396e 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h @@ -163,21 +163,6 @@ protected: void AddInput(Input* const i); void AddOutput(Output* const o); - class FullAnalogSurface final : public Input - { - public: - FullAnalogSurface(Input* low, Input* high) : m_low(*low), m_high(*high) {} - ControlState GetState() const override; - std::string GetName() const override; - bool IsDetectable() const override; - bool IsHidden() const override; - bool IsMatchingName(std::string_view name) const override; - - private: - Input& m_low; - Input& m_high; - }; - // Pass Inputs for center-neutral (- and +) directions of some axis. // This function adds those Inputs and also a FullAnalogSurface Input for each direction. // This is only needed when it's not known if the particular axis is neutral in the center |
