2016-06-15 23:48:41 +02:00
|
|
|
#ifndef RECEIVESPARAMETERMESSAGESIF_H_
|
|
|
|
#define RECEIVESPARAMETERMESSAGESIF_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <framework/parameters/HasParametersIF.h>
|
2018-07-12 16:29:32 +02:00
|
|
|
#include <framework/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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* RECEIVESPARAMETERMESSAGESIF_H_ */
|