fsfw/src/fsfw/introspection/HasTmTcParametersIF.h
Ulrich Mohr 3a433915f1
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
moved action parameters to a generic place to use them for HK TM
2023-07-12 12:52:07 +02:00

12 lines
276 B
C++

#pragma once
#include "ParameterIF.h"
#include <vector>
class HasTmTcParametersIF {
public:
~HasTmTcParametersIF() = default;
virtual void registerParameter(ParameterIF *parameter) = 0;
virtual std::vector<ParameterIF *> const *getParameters() const = 0;
};