#ifndef FAN_H #define FAN_H #include #include "model/hardware/core/Status.h" class Fan { private: QString _name; uint32_t _rpm; bool _lock; public: Fan(QString name); void Update(); QString getName(); uint32_t getRpm(); bool isLock(); }; #endif // FAN_H