fsfw/src/fsfw/tmtcpacket/pus/RawUserDataReaderIF.h

15 lines
351 B
C
Raw Normal View History

2022-07-20 22:21:15 +02:00
#ifndef FSFW_TMTCPACKET_RAWDATAIF_H
#define FSFW_TMTCPACKET_RAWDATAIF_H
#include <cstddef>
#include <cstdint>
class RawUserDataReaderIF {
public:
2022-07-21 18:17:37 +02:00
~RawUserDataReaderIF() = default;
[[nodiscard]] virtual const uint8_t* getUserData() const = 0;
[[nodiscard]] virtual size_t getUserDataLen() const = 0;
2022-07-20 22:21:15 +02:00
};
#endif // FSFW_TMTCPACKET_RAWDATAIF_H