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

📄 inst_tok_3.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: inst_tok_3.cc// // isip include files//#include "instance.h"#include "instance_constants.h" // method: reset_markers_cc//// arguments: none//  // return: a logical_1 indicating status//// this method resets the marker positions in each token to the end of// the trace list//logical_1 Instance::reset_markers_cc() {  // if a token list doesn't exist quit  //  if (token_list_d == (Link_list*)NULL) {    return ISIP_TRUE;  }    // dummy variables  //  Token* tok = (Token*)NULL;    // loop over all tokens  //  for (Link_node* nd = token_list_d->get_head_cc(); nd != (Link_node*)NULL;       nd = nd->get_next_cc()) {        // get the token    //    tok = (Token*)(nd->get_item_cc());        // reset the marker for this token    //    tok->reset_marker_cc();  }    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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