con_resp.h

来自「digital filter designer s handbook heade」· C头文件 代码 · 共 32 行

H
32
字号
//
//  File = con_resp.h
//

#ifndef _CON_RESP_H_
#define _CON_RESP_H_

#include <fstream.h>
#include "typedefs.h"

class ContinWindowResponse
{
 public:

  // constructor

  ContinWindowResponse( istream& uin,
                        ostream& uout );
 
 protected:
 
  int Num_Resp_Pts;
  logical Db_Scale_Enab;
  int Window_Shape;
  ofstream *Response_File;

};

  

#endif
  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?