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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = chebyshev_proto.h
  3. //
  4. #ifndef _CHEBYSHEV_PROTO_H_
  5. #define _CHEBYSHEV_PROTO_H_
  6. #include "filter_proto.h"
  7. class ChebyshevPrototype : public AnalogFilterPrototype
  8. {
  9. public:
  10.   ChebyshevPrototype( int prototype_order,
  11.                       double ripple,
  12.                       bool bw_is_ripple_bw );
  13.   ~ChebyshevPrototype(void);
  14. private:
  15.   double Ripple;
  16.   bool Bw_Is_Ripple_Bw;
  17.   bool Bw_Is_3db_Bw;
  18.   
  19. };
  20. #endif