2016-06-15 23:48:41 +02:00
|
|
|
#ifndef HASMODESEQUENCEIF_H_
|
|
|
|
#define HASMODESEQUENCEIF_H_
|
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "ModeDefinitions.h"
|
|
|
|
#include "ModeSequenceMessage.h"
|
|
|
|
#include "ModeStoreIF.h"
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
class HasModeSequenceIF {
|
|
|
|
public:
|
|
|
|
virtual ~HasModeSequenceIF() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual MessageQueueId_t getSequenceCommandQueue() const = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HASMODESEQUENCEIF_H_ */
|