diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-11-03 04:42:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-03 04:42:05 +0100 |
| commit | 1d07332657719a1a86290bf4e138ac7972ad2409 (patch) | |
| tree | f5470086989a70aa0d5f82905ceec2b489999ccd /Source/Core/InputCommon/ControllerInterface/evdev/evdev.h | |
| parent | 0210d115c22a1c5745c76eaefe38b5d0af3247f9 (diff) | |
| parent | 168a49c87ffbd05512c20db9735b3cb92afac93b (diff) | |
Merge pull request #11193 from jordan-woyak/ciface-input-backend-interface
ControllerInterface: Add InputBackend interface.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev/evdev.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/evdev/evdev.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h index fd497ad8b8..ff5ab8a72a 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.h @@ -11,9 +11,9 @@ namespace ciface::evdev { -void Init(); -void PopulateDevices(); -void Shutdown(); +class InputBackend; + +std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface); class evdevDevice : public Core::Device { @@ -75,6 +75,7 @@ public: void UpdateInput() override; bool IsValid() const override; + evdevDevice(InputBackend* input_backend); ~evdevDevice(); // Return true if node was "interesting". @@ -97,5 +98,7 @@ private: }; std::vector<Node> m_nodes; + + InputBackend& m_input_backend; }; } // namespace ciface::evdev |
