From 1001c1d48bc7aff5a88bcd58028e6f6d58777265 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Sun, 16 Feb 2020 17:21:06 +0100 Subject: [PATCH] added new IF for thermal messages --- thermal/AcceptsThermalMessagesIF.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 thermal/AcceptsThermalMessagesIF.h diff --git a/thermal/AcceptsThermalMessagesIF.h b/thermal/AcceptsThermalMessagesIF.h new file mode 100644 index 00000000..e95faaaf --- /dev/null +++ b/thermal/AcceptsThermalMessagesIF.h @@ -0,0 +1,18 @@ +/** + * \file AcceptsThermalMessagesIF.h + * + * \date 16.02.2020 + */ + +#ifndef FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_ +#define FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_ +#include + +class AcceptsThermalMessagesIF { +public: + virtual ~AcceptsThermalMessagesIF(); + + virtual MessageQueueId_t getReceptionQueue() const = 0; +}; + +#endif /* FRAMEWORK_THERMAL_ACCEPTSTHERMALMESSAGESIF_H_ */