fsfw/src/fsfw/cfdp/tlv/TlvIF.h

15 lines
305 B
C
Raw Normal View History

#ifndef FSFW_SRC_FSFW_CFDP_TLVIF_H_
#define FSFW_SRC_FSFW_CFDP_TLVIF_H_
#include "../definitions.h"
2022-02-02 10:29:30 +01:00
class TlvIF : public SerializeIF {
public:
virtual ~TlvIF(){};
2022-02-02 10:29:30 +01:00
virtual uint8_t getLengthField() const = 0;
2022-09-15 18:41:15 +02:00
virtual cfdp::TlvType getType() const = 0;
};
#endif /* FSFW_SRC_FSFW_CFDP_TLVIF_H_ */