summaryrefslogtreecommitdiffstats
path: root/tach_sensor.hpp
blob: 0ef2b0ab998ad5e2361e1bde9a8cfd1b716539d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include "sensor_base.hpp"


namespace phosphor
{
namespace fan
{
namespace presence
{

class TachSensor : public Sensor
{
    public:
        TachSensor() = delete;
        TachSensor(const TachSensor&) = delete;
        TachSensor(TachSensor&&) = delete;
        TachSensor& operator=(const TachSensor&) = delete;
        TachSensor& operator=(TachSensor&&) = delete;
        ~TachSensor() = default;

        bool isPresent();

    private:

};

} // namespace presence
} // namespace fan
} // namespace phosphor
OpenPOWER on IntegriCloud