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