2017-02-09 03:15:43 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControllerEmu/Control/Control.h"
|
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
|
|
|
class Input : public Control
|
|
|
|
{
|
|
|
|
public:
|
2017-04-30 12:53:33 +00:00
|
|
|
Input(const std::string& name, const std::string& ui_name);
|
2017-02-09 03:15:43 +00:00
|
|
|
explicit Input(const std::string& name);
|
|
|
|
};
|
|
|
|
} // namespace ControllerEmu
|