forked from dolphin-emu/dolphin
		
	Replaces includes with forward declarations where applicable, and moves includes to where they're actually needed.
		
			
				
	
	
		
			21 lines
		
	
	
		
			499 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			499 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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"
 | 
						|
#include "InputCommon/ControllerInterface/Device.h"
 | 
						|
 | 
						|
namespace ControllerEmu
 | 
						|
{
 | 
						|
class MixedTriggers : public ControlGroup
 | 
						|
{
 | 
						|
public:
 | 
						|
  explicit MixedTriggers(const std::string& name);
 | 
						|
 | 
						|
  void GetState(u16* digital, const u16* bitmasks, ControlState* analog);
 | 
						|
};
 | 
						|
}  // namespace ControllerEmu
 |