#ifndef FANCURVE_H_ #define FANCURVE_H_ #include #include #include #include struct FanStep { int Temp; int Percent; }; class FanCurve { public: void DoFanControl(); private: int AggregateTemperature(); std::vector mSteps; std::vector> mTempSensors; std::vector> mFans; }; #endif // FANCURVE_H_