2017-02-09 03:15:43 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Output.h"
|
|
|
|
|
2017-02-11 00:31:21 +00:00
|
|
|
#include <memory>
|
2017-02-09 03:15:43 +00:00
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControlReference/ControlReference.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
2017-02-11 00:31:21 +00:00
|
|
|
Output::Output(const std::string& name_) : Control(std::make_unique<OutputReference>(), name_)
|
2017-02-09 03:15:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace ControllerEmu
|