bessel_proto.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. // File = bessel_proto.h
  3. //
  4. #ifndef _BESSEL_PROTO_H_
  5. #define _BESSEL_PROTO_H_  
  6. #include "filter_proto.h"
  7. #define MAX_BESSEL_ORDER 10
  8. class BesselPrototype : public AnalogFilterPrototype
  9. {
  10. public: 
  11.   // constructor to initialize for a specified filter order 
  12.   BesselPrototype( int filt_order,
  13.                    bool norm_for_delay );
  14.   ~BesselPrototype();
  15. }; 
  16. #endif