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/ControlGroup/ControlGroup.h"
|
2017-04-04 19:37:31 +00:00
|
|
|
#include "InputCommon/ControllerInterface/Device.h"
|
2017-02-09 03:15:43 +00:00
|
|
|
|
|
|
|
namespace ControllerEmu
|
|
|
|
{
|
|
|
|
class Triggers : public ControlGroup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit Triggers(const std::string& name);
|
|
|
|
|
|
|
|
void GetState(ControlState* analog);
|
|
|
|
};
|
|
|
|
} // namespace ControllerEmu
|