blob: 46efeb5054cd2c8ed29e544dc0fc15ad0bf29d0a [file] [log] [blame]
Matthew Barth293477d2017-02-17 15:39:36 -06001#include "fan_enclosure.hpp"
2
3
4namespace phosphor
5{
6namespace fan
7{
8namespace presence
9{
10
Matthew Barthb8034452017-02-17 16:39:46 -060011void FanEnclosure::addInventory()
12{
13 //TODO Add this fan to inventory
14}
Matthew Barth293477d2017-02-17 15:39:36 -060015
Matthew Barthd6403822017-02-17 17:10:19 -060016void FanEnclosure::addSensor(
17 std::unique_ptr<Sensor>&& sensor)
18{
19 FanEnclosure::sensors.push_back(std::move(sensor));
20}
21
Matthew Barth293477d2017-02-17 15:39:36 -060022} // namespace presence
23} // namespace fan
24} // namespace phosphor