mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #4892 from lioncash/control
Control: Convert raw pointer parameter into unique_ptr
This commit is contained in:
commit
5a53763c1a
@ -3,11 +3,14 @@
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "InputCommon/ControllerEmu/Control/Control.h"
|
||||
|
||||
#include <utility>
|
||||
#include "InputCommon/ControlReference/ControlReference.h"
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
Control::Control(ControlReference* ref, const std::string& name_) : control_ref(ref), name(name_)
|
||||
Control::Control(std::unique_ptr<ControlReference> ref, const std::string& name_)
|
||||
: control_ref(std::move(ref)), name(name_)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -20,6 +20,6 @@ public:
|
||||
const std::string name;
|
||||
|
||||
protected:
|
||||
Control(ControlReference* ref, const std::string& name);
|
||||
Control(std::unique_ptr<ControlReference> ref, const std::string& name);
|
||||
};
|
||||
} // namespace ControllerEmu
|
||||
|
@ -4,12 +4,13 @@
|
||||
|
||||
#include "InputCommon/ControllerEmu/Control/Input.h"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "InputCommon/ControlReference/ControlReference.h"
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
Input::Input(const std::string& name_) : Control(new InputReference, name_)
|
||||
Input::Input(const std::string& name_) : Control(std::make_unique<InputReference>(), name_)
|
||||
{
|
||||
}
|
||||
} // namespace ControllerEmu
|
||||
|
@ -4,12 +4,13 @@
|
||||
|
||||
#include "InputCommon/ControllerEmu/Control/Output.h"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "InputCommon/ControlReference/ControlReference.h"
|
||||
|
||||
namespace ControllerEmu
|
||||
{
|
||||
Output::Output(const std::string& name_) : Control(new OutputReference, name_)
|
||||
Output::Output(const std::string& name_) : Control(std::make_unique<OutputReference>(), name_)
|
||||
{
|
||||
}
|
||||
} // namespace ControllerEmu
|
||||
|
Loading…
Reference in New Issue
Block a user