fsfw/src/fsfw/datapool/HasDatapoolIF.h
Ulrich Mohr ad4adc7cba
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
breaking everything in preperation of new Datapool
2023-07-03 17:10:16 +02:00

9 lines
165 B
C++

#pragma once
#include "DatapoolHelper.h"
class HasDatapoolIF {
public:
virtual ~HasDatapoolIF() = default;
virtual DatapoolHelper* getDatapoolHelper() = 0;
};