fsfw/src/fsfw/thermal/AcceptsThermalMessagesIF.h

22 lines
516 B
C
Raw Normal View History

2020-12-03 18:32:32 +01:00
/**
* \file AcceptsThermalMessagesIF.h
*
* \date 16.02.2020
*/
#ifndef FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_
#define FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_
#include "../ipc/MessageQueueSenderIF.h"
class AcceptsThermalMessagesIF {
2022-02-02 10:29:30 +01:00
public:
/**
* @brief This is the empty virtual destructor as required for C++ interfaces.
*/
virtual ~AcceptsThermalMessagesIF() {}
2020-12-03 18:32:32 +01:00
2022-02-02 10:29:30 +01:00
virtual MessageQueueId_t getReceptionQueue() const = 0;
2020-12-03 18:32:32 +01:00
};
#endif /* FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_ */