eive-obsw/mission/com/SyrlinksFdir.h
Robin Mueller 9dc0c5bde0
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
cleaning up com
2023-03-24 19:37:03 +01: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_ */