fsfw/devicehandlers/ChildHandlerFDIR.cpp

12 lines
305 B
C++
Raw Normal View History

2020-08-13 20:53:35 +02:00
#include "ChildHandlerFDIR.h"
2020-10-12 18:18:41 +02:00
ChildHandlerFDIR::ChildHandlerFDIR(object_id_t owner,
object_id_t faultTreeParent, uint32_t recoveryCount) :
DeviceHandlerFailureIsolation(owner, faultTreeParent) {
recoveryCounter.setFailureThreshold(recoveryCount);
}
ChildHandlerFDIR::~ChildHandlerFDIR() {
}