Files
fsfw/src/fsfw/cfdp/pdu/PromptPduReader.h
Robin Mueller 2e27a85c95
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
finished renaming operation
2022-09-14 19:48:11 +02:00

18 lines
568 B
C++

#ifndef FSFW_SRC_FSFW_CFDP_PDU_PROMPTPDUDESERIALIZER_H_
#define FSFW_SRC_FSFW_CFDP_PDU_PROMPTPDUDESERIALIZER_H_
#include "fsfw/cfdp/pdu/FileDirectiveReader.h"
class PromptPduReader : public FileDirectiveReader {
public:
PromptPduReader(const uint8_t *pduBuf, size_t maxSize);
[[nodiscard]] cfdp::PromptResponseRequired getPromptResponseRequired() const;
ReturnValue_t parseData() override;
private:
cfdp::PromptResponseRequired responseRequired = cfdp::PromptResponseRequired::PROMPT_NAK;
};
#endif /* FSFW_SRC_FSFW_CFDP_PDU_PROMPTPDUDESERIALIZER_H_ */