2016-08-09 22:48:22 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-08-08 16:38:22 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-03-11 07:28:18 +00:00
|
|
|
#include <string>
|
|
|
|
|
2024-03-11 06:31:30 +00:00
|
|
|
#include "InputCommon/ControllerInterface/InputBackend.h"
|
|
|
|
|
2019-06-17 20:39:24 +00:00
|
|
|
namespace ciface::Quartz
|
2016-08-08 16:38:22 +00:00
|
|
|
{
|
2024-03-11 07:28:18 +00:00
|
|
|
std::string GetSourceName();
|
|
|
|
|
2024-03-11 06:31:30 +00:00
|
|
|
std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface);
|
2019-06-17 20:39:24 +00:00
|
|
|
} // namespace ciface::Quartz
|