fsfw/src/fsfw/introspection/ParameterTypeSelector.h

13 lines
175 B
C
Raw Normal View History

2022-06-28 18:56:52 +02:00
#pragma once
#include "Types.h"
#ifdef FSFW_INTROSPECTION
class ParameterTypeSelector {
public:
template <typename T>
static Types::ParameterType getType();
};
#endif