feat: filter type input

This commit is contained in:
2023-09-10 01:02:22 +04:00
parent 576cf8e3b5
commit de37b814bf
10 changed files with 73 additions and 6 deletions

View File

@@ -10,4 +10,5 @@ class HighPassFilter : public Filter {
HighPassFilter(Filter* filter);
HighPassFilter(float freq, float res, float q);
~HighPassFilter();
bool IsSameFilterType(FilterType type) override { return type == HighPass; };
};