mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
e149ad4f0a
SPDX standardizes how source code conveys its copyright and licensing information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX tags are adopted in many large projects, including things like the Linux kernel.
17 lines
443 B
C++
17 lines
443 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Output.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
Output::Output(Translatability translate_, std::string name_)
|
|
: Control(std::make_unique<OutputReference>(), translate_, std::move(name_))
|
|
{
|
|
}
|
|
} // namespace ControllerEmu
|