fsfw/parameters/ReceivesParameterMessagesIF.h
Ulrich Mohr 575f70ba03 updating code from Flying Laptop
This is the framework of Flying Laptop OBSW version A.13.0.
2018-07-12 16:29:32 +02:00

20 lines
441 B
C++

#ifndef RECEIVESPARAMETERMESSAGESIF_H_
#define RECEIVESPARAMETERMESSAGESIF_H_
#include <framework/parameters/HasParametersIF.h>
#include <framework/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_ */