fsfw/src/fsfw/housekeeping/AcceptsHkPacketsIF.h
Robin Mueller 6d0fa36f8a
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
cleaning up message queue mock and subscription API
2022-07-25 19:36:56 +02:00

13 lines
358 B
C++

#ifndef FRAMEWORK_HOUSEKEEPING_ACCEPTSHKPACKETSIF_H_
#define FRAMEWORK_HOUSEKEEPING_ACCEPTSHKPACKETSIF_H_
#include "fsfw/ipc/MessageQueueMessageIF.h"
class AcceptsHkPacketsIF {
public:
virtual ~AcceptsHkPacketsIF() = default;
[[nodiscard]] virtual MessageQueueId_t getHkQueue() const = 0;
};
#endif /* FRAMEWORK_HOUSEKEEPING_ACCEPTSHKPACKETSIF_H_ */