16 lines
315 B
C++
16 lines
315 B
C++
#ifndef MISSION_CONTROLLER_THERMALCONTROLLER_H_
|
|
#define MISSION_CONTROLLER_THERMALCONTROLLER_H_
|
|
|
|
#include <fsfw/controller/ExtendedControllerBase.h>
|
|
|
|
|
|
|
|
class ThermalController {
|
|
public:
|
|
ThermalController(object_id_t objectId);
|
|
|
|
ReturnValue_t perform();
|
|
};
|
|
|
|
#endif /* MISSION_CONTROLLER_THERMALCONTROLLER_H_ */
|