LibreVNA/Software/PC_Application/Traces/Math/tdrlowpass.h
2020-11-28 19:32:18 +01:00

26 lines
437 B
C++

#ifndef TDRLOWPASS_H
#define TDRLOWPASS_H
#include "tracemath.h"
namespace Math {
class TDRLowpass : public TraceMath
{
public:
TDRLowpass();
DataType outputType(DataType inputType) override;
QString description() override;
void edit() override;
static QWidget* createExplanationWidget();
public slots:
void inputSamplesChanged(unsigned int begin, unsigned int end) override;
};
}
#endif // TDRBANDPASS_H