20 lines
461 B
C
20 lines
461 B
C
|
#ifndef FSFW_PARAMETERS_RECEIVESPARAMETERMESSAGESIF_H_
|
||
|
#define FSFW_PARAMETERS_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 /* FSFW_PARAMETERS_RECEIVESPARAMETERMESSAGESIF_H_ */
|