From e824f985e7e32923d9f76e3ad5baf4909880739f Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Thu, 11 May 2017 10:07:55 -0500 Subject: Use unique_ptr for sd_event object wrapper Convert the sd_event object wrapper from a shared_ptr to a unique_ptr. Requires a new header file. Change-Id: I868a9e88ed93878c2e0bb12e58f8d3a604510da0 Signed-off-by: Matt Spinler --- monitor/fan.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'monitor/fan.hpp') diff --git a/monitor/fan.hpp b/monitor/fan.hpp index 910b4eb..8e7f86f 100644 --- a/monitor/fan.hpp +++ b/monitor/fan.hpp @@ -3,6 +3,7 @@ #include #include #include +#include "event.hpp" #include "tach_sensor.hpp" #include "types.hpp" @@ -72,7 +73,7 @@ class Fan * @param def - the fan definition structure */ Fan(sdbusplus::bus::bus& bus, - std::shared_ptr& events, + phosphor::fan::event::EventPtr& events, const FanDefinition& def); /** -- cgit v1.2.1