2022-04-28 15:25:03 +02:00
|
|
|
#ifndef MISSION_DEVICES_SYRLINKSFDIR_H_
|
|
|
|
#define MISSION_DEVICES_SYRLINKSFDIR_H_
|
|
|
|
|
|
|
|
#include <fsfw/devicehandlers/DeviceHandlerFailureIsolation.h>
|
|
|
|
|
2022-04-28 15:29:57 +02:00
|
|
|
class SyrlinksFdir : public DeviceHandlerFailureIsolation {
|
2022-04-28 15:25:03 +02:00
|
|
|
public:
|
|
|
|
SyrlinksFdir(object_id_t syrlinksId);
|
2022-04-28 15:29:57 +02:00
|
|
|
|
2022-04-28 15:25:03 +02:00
|
|
|
private:
|
2022-04-28 15:36:56 +02:00
|
|
|
ReturnValue_t eventReceived(EventMessage* event) override;
|
|
|
|
void eventConfirmed(EventMessage* event) override;
|
2022-04-28 15:25:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_DEVICES_SYRLINKSFDIR_H_ */
|