fsfw/src/fsfw/tmtcpacket/pus/RawUserDataReaderIF.h
Robin Mueller 0981ee6f7e
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
minor changes, virtual dtors added
2022-07-21 18:17:37 +02:00

15 lines
351 B
C++

#ifndef FSFW_TMTCPACKET_RAWDATAIF_H
#define FSFW_TMTCPACKET_RAWDATAIF_H
#include <cstddef>
#include <cstdint>
class RawUserDataReaderIF {
public:
~RawUserDataReaderIF() = default;
[[nodiscard]] virtual const uint8_t* getUserData() const = 0;
[[nodiscard]] virtual size_t getUserDataLen() const = 0;
};
#endif // FSFW_TMTCPACKET_RAWDATAIF_H