diff options
| author | Mat M <mathew1800@gmail.com> | 2017-02-10 13:50:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-10 13:50:33 -0500 |
| commit | f6d364e37b35c7743d64cade8e7367457b372dfc (patch) | |
| tree | 584416b87bbc0589a8541cf2236dfc960c052664 /Source/Core/InputCommon/ControllerEmu/Control/Control.h | |
| parent | 8f81051df3df66a9647dbaeab8273dba7127a5c7 (diff) | |
| parent | 6a75ea5653ec596b1a08e985e98fca0b05ccd6f7 (diff) | |
Merge pull request #4873 from lioncash/controller-emu
ControllerEmu: Separate ControlGroup from ControllerEmu
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Control/Control.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/Control/Control.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Control/Control.h b/Source/Core/InputCommon/ControllerEmu/Control/Control.h new file mode 100644 index 0000000000..ef88ebd328 --- /dev/null +++ b/Source/Core/InputCommon/ControllerEmu/Control/Control.h @@ -0,0 +1,25 @@ +// 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(ControlReference* ref, const std::string& name); +}; +} // namespace ControllerEmu |
