eive-obsw/mission/system/fdir/SyrlinksFdir.h
Robin Mueller 7e230b64ea
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
create and add syrlinks fdir
2022-04-28 15:29:57 +02:00

15 lines
366 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);
};
#endif /* MISSION_DEVICES_SYRLINKSFDIR_H_ */