All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
15 lines
316 B
C++
15 lines
316 B
C++
#ifndef FSFW_SRC_FSFW_CFDP_TLV_MESSAGETOUSERTLV_H_
|
|
#define FSFW_SRC_FSFW_CFDP_TLV_MESSAGETOUSERTLV_H_
|
|
|
|
#include "Tlv.h"
|
|
|
|
class MessageToUserTlv : public cfdp::Tlv {
|
|
public:
|
|
MessageToUserTlv();
|
|
MessageToUserTlv(uint8_t* value, size_t size);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif /* FSFW_SRC_FSFW_CFDP_TLV_MESSAGETOUSERTLV_H_ */
|