fsfw/tmtcservices/AcceptsVerifyMessageIF.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

16 lines
314 B
C++

#ifndef ACCEPTSVERIFICATIONMESSAGEIF_H_
#define ACCEPTSVERIFICATIONMESSAGEIF_H_
#include <framework/ipc/MessageQueueSenderIF.h>
class AcceptsVerifyMessageIF {
public:
virtual ~AcceptsVerifyMessageIF() {
}
virtual MessageQueueId_t getVerificationQueue() = 0;
};
#endif /* ACCEPTSVERIFICATIONMESSAGEIF_H_ */