diff --git a/libraries/Filter/Filter.h b/libraries/Filter/Filter.h index dfa45dea29..f66028f1aa 100644 --- a/libraries/Filter/Filter.h +++ b/libraries/Filter/Filter.h @@ -19,15 +19,19 @@ template class Filter { - public: - // constructor - Filter() {}; +public: + // constructor + Filter() { + }; - // apply - Add a new raw value to the filter, retrieve the filtered result - virtual T apply(T sample) { return sample; }; - - // reset - clear the filter - virtual void reset() {}; + // apply - Add a new raw value to the filter, retrieve the filtered result + virtual T apply(T sample) { + return sample; + }; + + // reset - clear the filter + virtual void reset() { + }; };