fsfw/thermal/AcceptsThermalMessagesIF.h

23 lines
541 B
C
Raw Normal View History

2020-02-16 17:21:06 +01:00
/**
* \file AcceptsThermalMessagesIF.h
*
* \date 16.02.2020
*/
#ifndef FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_
#define FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_
#include <framework/ipc/MessageQueueSenderIF.h>
class AcceptsThermalMessagesIF {
public:
2020-02-17 21:20:51 +01:00
/**
* @brief This is the empty virtual destructor as required for C++ interfaces.
*/
virtual ~AcceptsThermalMessagesIF() { }
2020-02-16 17:21:06 +01:00
virtual MessageQueueId_t getReceptionQueue() const = 0;
};
#endif /* FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_ */