Reviewed-on: #23 Co-authored-by: HiveBeats <e1lama@protonmail.com> Co-committed-by: HiveBeats <e1lama@protonmail.com>
15 lines
360 B
C++
15 lines
360 B
C++
#pragma once
|
|
#include "Filter.h"
|
|
|
|
class HighPassFilter : public Filter {
|
|
protected:
|
|
float GetSampleForFilterType() override;
|
|
|
|
public:
|
|
HighPassFilter();
|
|
HighPassFilter(Filter* filter);
|
|
HighPassFilter(float freq, float res, float q);
|
|
~HighPassFilter();
|
|
bool IsSameFilterType(FilterType type) override { return type == HighPass; };
|
|
};
|