All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
15 lines
400 B
C++
15 lines
400 B
C++
#ifndef MISSION_TMTC_TMSTOREBACKEND_H_
|
|
#define MISSION_TMTC_TMSTOREBACKEND_H_
|
|
|
|
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
|
|
|
|
class TmStoreBackend : public AcceptsTelemetryIF {
|
|
public:
|
|
[[nodiscard]] const char* getName() const override;
|
|
[[nodiscard]] MessageQueueId_t getReportReceptionQueue(uint8_t virtualChannel) const override;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif /* MISSION_TMTC_TMSTOREBACKEND_H_ */
|