2022-10-22 15:13:35 -06:00
|
|
|
// Copyright 2022 Dolphin Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerInterface/InputBackend.h"
|
|
|
|
|
|
|
|
namespace ciface
|
|
|
|
{
|
|
|
|
InputBackend::InputBackend(ControllerInterface* controller_interface)
|
|
|
|
: m_controller_interface(*controller_interface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
InputBackend::~InputBackend() = default;
|
|
|
|
|
2023-05-24 13:58:30 -06:00
|
|
|
void InputBackend::UpdateInput(std::vector<std::weak_ptr<ciface::Core::Device>>& devices_to_remove)
|
2022-10-22 15:13:35 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-03-11 01:09:31 -06:00
|
|
|
void InputBackend::HandleWindowChange()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-10-22 15:13:35 -06:00
|
|
|
ControllerInterface& InputBackend::GetControllerInterface()
|
|
|
|
{
|
|
|
|
return m_controller_interface;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ciface
|