fsfw/src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h

15 lines
387 B
C
Raw Normal View History

2022-10-24 10:39:43 +02:00
#ifndef FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_
#define FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_
#include <fsfw/ipc/messageQueueDefinitions.h>
class TmStoreFrontendSimpleIF {
public:
2022-10-24 10:39:43 +02:00
virtual ~TmStoreFrontendSimpleIF() = default;
2022-10-24 10:39:43 +02:00
virtual MessageQueueId_t getCommandQueue() const = 0;
2022-12-14 13:50:57 +01:00
private:
2022-10-24 10:39:43 +02:00
};
#endif /* FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_ */