2020-08-28 18:46:47 +02:00
|
|
|
#ifndef FSFW_PARAMETERS_RECEIVESPARAMETERMESSAGESIF_H_
|
|
|
|
#define FSFW_PARAMETERS_RECEIVESPARAMETERMESSAGESIF_H_
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "HasParametersIF.h"
|
|
|
|
#include "../ipc/MessageQueueSenderIF.h"
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
class ReceivesParameterMessagesIF : public HasParametersIF {
|
|
|
|
public:
|
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
static const uint8_t DOMAIN_ID_BASE = 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
virtual ~ReceivesParameterMessagesIF() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual MessageQueueId_t getCommandQueue() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-08-28 18:46:47 +02:00
|
|
|
#endif /* FSFW_PARAMETERS_RECEIVESPARAMETERMESSAGESIF_H_ */
|