From 56e8e5a8b34dee6fcf240111618109e53b77841f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 24 Oct 2022 10:39:43 +0200 Subject: [PATCH] dont know if I am going to need this --- src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h diff --git a/src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h b/src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h new file mode 100644 index 00000000..3590339d --- /dev/null +++ b/src/fsfw/tmstorage/TmStoreFrontendSimpleIF.h @@ -0,0 +1,15 @@ +#ifndef FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_ +#define FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_ + +#include + +class TmStoreFrontendSimpleIF { +public: + virtual ~TmStoreFrontendSimpleIF() = default; +private: + virtual MessageQueueId_t getCommandQueue() const = 0; +}; + + + +#endif /* FSFW_SRC_FSFW_TMSTORAGE_TMSTOREBACKENDSIMPLEIF_H_ */