![]() |
RTXI 1.3
|
00001 // 00002 // File = con_resp.h 00003 // 00004 00005 #ifndef _CON_RESP_H_ 00006 #define _CON_RESP_H_ 00007 00008 #include <fstream> 00009 #include "typedefs.h" 00010 00011 class ContinWindowResponse 00012 { 00013 public: 00014 00015 // constructor 00016 00017 ContinWindowResponse( std::istream& uin, 00018 std::ostream& uout ); 00019 00020 protected: 00021 00022 int Num_Resp_Pts; 00023 logical Db_Scale_Enab; 00024 int Window_Shape; 00025 std::ofstream *Response_File; 00026 00027 }; 00028 00029 00030 00031 #endif 00032