00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 #ifndef JezabelHighPassFilter_INCLUDED
00019 #define JezabelHighPassFilter_INCLUDED
00020 
00021 #include <jezabeliir2filter.h>
00022 
00023 template<class data> class MJ_FilterIIR2;
00024 
00025 typedef MJ_FilterIIR2<JezabelData> FilterIIR2;
00026 
00027 #include <qstring.h>
00028 #include <jezabelpanel.h>
00029 
00037 class JezabelHighPassFilter : public JezabelIIR2Filter {
00038 
00039   Q_OBJECT
00040     
00041  public:
00043   JezabelHighPassFilter(char *name,
00044                           QWidget *parent = 0);
00045   
00046   float center, Q;
00047 
00048   public slots:
00049     void parametersChanged(QString);
00050 
00051 };
00052 
00053 #endif