00001 //LabPlot : filter.h 00002 // sync with labplot.qs 00003 00004 #ifndef FILTER_H 00005 #define FILTER_H 00006 00007 enum Filter {LOWPASS,HIGHPASS,BANDPASS,BANDSTOP}; 00008 00009 static const char *filtertypes[] = {I18N_NOOP("low pass"),I18N_NOOP("high pass"), 00010 I18N_NOOP("band pass"),I18N_NOOP("band stop"),0}; 00011 00012 #endif