⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file_05.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/class/system/File/file_05.cc// version: $Id: file_05.cc,v 1.3 2000/09/20 13:06:57 hamaker Exp $//// isip include files//#include "File.h"#include <SysString.h>// method: increaseIndention//// arguments: none//// return: a boolean value indicating status//// increase the indention level//boolean File::increaseIndention() {  // increase the level  //  indent_level_d++;  // check column position, possibly output newline  //  if (column_position_d != 0) {    SysString newline(L"\n");    put(newline);  }    // exit gracefully  //  return true;}// method: decreaseIndention//// arguments: none//// return: a boolean value indicating status//// decrease the indention level//boolean File::decreaseIndention() {  // decrease the level  //  indent_level_d--;  if (indent_level_d < 0) {    return Error::handle(name(), L"decreaseIndention", ERR_WRAP,			 __FILE__, __LINE__);  }    // check column position, possibly output newline  //  if (column_position_d != 0) {    SysString newline(L"\n");    put(newline);  }    // exit gracefully  //  return true;}// method: getLineLength//// arguments: none//// return: a long number//// get the maximum number of characters printed per line//long File::getLineLength() const {  // if no line wrapping, we can't predict  //  if (line_wrap_d <= 0) {    return -1;  }    // if no indention, the line length is equal to the line wrap  //  if (indent_level_d <= 0) {    return line_wrap_d;  }    // compute & return the value  //  return (line_wrap_d - indent_level_d * INDENT_STR.length());}// method: registerTemp//// arguments://  SysString& fname: (input) temporary filename//// return: logical error status//// register a temporary filename so it can be deleted upon program// termination//boolean File::registerTemp(SysString& fname_a) {  if ((temp_num_d + 1) >= temp_size_d) {    mgr_d.reallocateBlock((void***)&temp_files_d, temp_size_d);  }  // add the new object to the array  //  temp_files_d[temp_num_d++] = new SysString(fname_a);  // exit gracefully  //  return true;}// method: cleanTemps//// arguments: none//// return: logical error status//// remove all registered temporary filenames//boolean File::cleanTemps() {  // delete all files that still exist  //  for (long i = 0; i < temp_num_d; i++) {    if (File::exists(*temp_files_d[i])) {      remove(*temp_files_d[i]);    }    delete temp_files_d[i];  }  // clean up memory  //  if (temp_size_d > 0) {    mgr_d.releaseBlock(temp_files_d);    temp_files_d = (SysString**)NULL;    temp_size_d = 0;    temp_num_d = 0;  }  // exit gracefully  //  return true;}

⌨️ 快捷键说明

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