Add logic to label fans, some cleanup

This commit is contained in:
2022-10-01 01:43:15 +02:00
parent a23563c0be
commit 2ef9d979b0
9 changed files with 104 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
#ifndef FANLABELER_H_
#define FANLABELER_H_
#include <memory>
#include <vector>
#include <fan/Fan.h>
class FanLabeler {
public:
void RunFanLabelInteraction(std::vector<std::shared_ptr<Fan>> fans);
};
#endif // FANLABELER_H_