eive-obsw/mission/system/fdir/SyrlinksFdir.h
Robin Mueller b97604d7d2
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
override event confirmed as well
2022-04-28 15:36:56 +02:00

16 lines
428 B
C++

#ifndef MISSION_DEVICES_SYRLINKSFDIR_H_
#define MISSION_DEVICES_SYRLINKSFDIR_H_
#include <fsfw/devicehandlers/DeviceHandlerFailureIsolation.h>
class SyrlinksFdir : public DeviceHandlerFailureIsolation {
public:
SyrlinksFdir(object_id_t syrlinksId);
private:
ReturnValue_t eventReceived(EventMessage* event) override;
void eventConfirmed(EventMessage* event) override;
};
#endif /* MISSION_DEVICES_SYRLINKSFDIR_H_ */