fixed slot sequence safety check added

This commit is contained in:
2020-04-16 13:17:26 +02:00
parent 21650b064d
commit f45a8cc171
3 changed files with 13 additions and 3 deletions

View File

@ -3,6 +3,7 @@
#include <framework/devicehandlers/FixedSequenceSlot.h>
#include <framework/objectmanager/SystemObject.h>
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <list>
#include <set>
@ -23,7 +24,6 @@ using SlotListIter = std::multiset<FixedSequenceSlot>::iterator;
class FixedSlotSequence {
public:
/**
* @brief The constructor of the FixedSlotSequence object.
*
@ -127,6 +127,8 @@ protected:
SlotList slotList;
uint32_t slotLengthMs;
bool isEmpty = false;
};
#endif /* FIXEDSLOTSEQUENCE_H_ */