20 lines
413 B
C++
20 lines
413 B
C++
#ifndef RECEIVESPARAMETERMESSAGESIF_H_
|
|
#define RECEIVESPARAMETERMESSAGESIF_H_
|
|
|
|
|
|
#include "HasParametersIF.h"
|
|
#include "../ipc/MessageQueueSenderIF.h"
|
|
|
|
class ReceivesParameterMessagesIF : public HasParametersIF {
|
|
public:
|
|
|
|
static const uint8_t DOMAIN_ID_BASE = 0;
|
|
virtual ~ReceivesParameterMessagesIF() {
|
|
}
|
|
|
|
virtual MessageQueueId_t getCommandQueue() const = 0;
|
|
};
|
|
|
|
|
|
#endif /* RECEIVESPARAMETERMESSAGESIF_H_ */
|