forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			516 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			516 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 Slider : public ControlGroup
 | 
						|
{
 | 
						|
public:
 | 
						|
  Slider(const std::string& name_, const std::string& ui_name_);
 | 
						|
  explicit Slider(const std::string& name_);
 | 
						|
 | 
						|
  void GetState(ControlState* slider);
 | 
						|
};
 | 
						|
}  // namespace ControllerEmu
 |