2017-02-08 22:15:43 -05:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Output.h"
|
|
|
|
|
2017-02-10 19:31:21 -05:00
|
|
|
#include <memory>
|
2017-02-08 22:15:43 -05:00
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
2018-04-10 17:22:30 +02:00
|
|
|
Output::Output(Translatability translate_, const std::string& name_)
|
|
|
|
: Control(std::make_unique<OutputReference>(), translate_, name_)
|
2017-02-08 22:15:43 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace ControllerEmu
|