diff options
author | german77 <juangerman-13@hotmail.com> | 2021-09-21 00:36:23 +0200 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-25 03:30:23 +0100 |
commit | 59b995a9e53f09b9831b03608cfe5ce27c3e3485 (patch) | |
tree | 54cf3df8ed6ef572d754267be8339c9a8f25b203 /src/input_common/sdl/sdl.h | |
parent | input_common: Rewrite udp client (diff) | |
download | yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.gz yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.bz2 yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.lz yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.xz yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.tar.zst yuzu-59b995a9e53f09b9831b03608cfe5ce27c3e3485.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/sdl/sdl.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h deleted file mode 100644 index b5d41bba4..000000000 --- a/src/input_common/sdl/sdl.h +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright 2018 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <memory> -#include <vector> -#include "common/param_package.h" -#include "input_common/main.h" - -namespace InputCommon::Polling { -class DevicePoller; -enum class DeviceType; -} // namespace InputCommon::Polling - -namespace InputCommon::SDL { - -class State { -public: - using Pollers = std::vector<std::unique_ptr<Polling::DevicePoller>>; - - /// Unregisters SDL device factories and shut them down. - virtual ~State() = default; - - virtual Pollers GetPollers(Polling::DeviceType) { - return {}; - } - - virtual std::vector<Common::ParamPackage> GetInputDevices() { - return {}; - } - - virtual ButtonMapping GetButtonMappingForDevice(const Common::ParamPackage&) { - return {}; - } - virtual AnalogMapping GetAnalogMappingForDevice(const Common::ParamPackage&) { - return {}; - } - virtual MotionMapping GetMotionMappingForDevice(const Common::ParamPackage&) { - return {}; - } -}; - -class NullState : public State { -public: -}; - -std::unique_ptr<State> Init(); - -} // namespace InputCommon::SDL |