PicoLowLevel
Loading...
Searching...
No Matches
Filter.h
Go to the documentation of this file.
1#ifndef FILTER_H
2#define FILTER_H
3
8template<typename T>
9class Filter {
10 public:
16 virtual T filter(T value) = 0;
17};
18
19#endif
Interface for a generic filter, with parameterized type.
Definition Filter.h:9
virtual T filter(T value)=0
Virtual filter function, will be replaced by the one from the chosen filter.