forked from dolphin-emu/dolphin
		
	Raw pointers shouldn't be used as boundaries in scenarios where ownership is being taken.
		
			
				
	
	
		
			26 lines
		
	
	
		
			462 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			462 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2017 Dolphin Emulator Project
 | |
| // Licensed under GPLv2+
 | |
| // Refer to the license.txt file included.
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <memory>
 | |
| #include <string>
 | |
| 
 | |
| class ControlReference;
 | |
| 
 | |
| namespace ControllerEmu
 | |
| {
 | |
| class Control
 | |
| {
 | |
| public:
 | |
|   virtual ~Control();
 | |
| 
 | |
|   std::unique_ptr<ControlReference> const control_ref;
 | |
|   const std::string name;
 | |
| 
 | |
| protected:
 | |
|   Control(std::unique_ptr<ControlReference> ref, const std::string& name);
 | |
| };
 | |
| }  // namespace ControllerEmu
 |