fsfw/devicehandlers/ChildHandlerFDIR.cpp

12 lines
305 B
C++
Raw Normal View History

#include "ChildHandlerFDIR.h"
2020-08-28 18:33:29 +02:00
ChildHandlerFDIR::ChildHandlerFDIR(object_id_t owner,
object_id_t faultTreeParent, uint32_t recoveryCount) :
2020-08-28 18:33:29 +02:00
DeviceHandlerFailureIsolation(owner, faultTreeParent) {
recoveryCounter.setFailureThreshold(recoveryCount);
}
ChildHandlerFDIR::~ChildHandlerFDIR() {
}