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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = butterworth_proto.h
  3. //
  4. #ifndef _BUTTERWORTH_PROTO_H_
  5. #define _BUTTERWORTH_PROTO_H_
  6. #include "filter_proto.h"
  7. class ButterworthPrototype : public AnalogFilterPrototype
  8. {
  9. public:
  10.   ButterworthPrototype( int prototype_order );
  11.   ~ButterworthPrototype(void);
  12.   
  13. };
  14. #endif