Robin Mueller
7e2a993211
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
15 lines
365 B
C++
15 lines
365 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_ */
|