mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-13 03:40:44 +02:00
32 lines
814 B
C++
32 lines
814 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
|
|
#include "InputCommon/ControllerEmu/ControllerEmu.h"
|
|
#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class PrimeHackAltProfile : public ControlGroup
|
|
{
|
|
public:
|
|
explicit PrimeHackAltProfile(const std::string& name, const std::string& default_selection);
|
|
|
|
const std::string& GetAltProfileName() const;
|
|
void SetAltProfileName(std::string& val);
|
|
|
|
private:
|
|
std::string m_selection_value;
|
|
std::string m_previous_selection;
|
|
};
|
|
} // namespace ControllerEmu
|