fsfw/src/fsfw/globalfunctions/matching/MatcherIF.h
Robin Mueller ddcac2bbac
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
reapply clang format
2022-02-02 10:29:30 +01:00

13 lines
198 B
C++

#ifndef MATCHERIF_H_
#define MATCHERIF_H_
template <typename T>
class MatcherIF {
public:
virtual ~MatcherIF() {}
virtual bool match(T number) { return false; }
};
#endif /* MATCHERIF_H_ */