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

📄 cpol_00.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/class/search/ContextPool/cpol_00.cc// version: $Id: cpol_00.cc,v 1.2 2003/01/23 20:00:25 alphonso Exp $//// isip include files//#include "ContextPool.h"// method: default constructor//// arguments: none//// return: none//// this is the default constructor for the ContextPool class//ContextPool::ContextPool() {  if (debug_level_d >= Integral::ALL) {         fprintf(stdout, "Constructor of context_pool: %p\n", this);    fflush(stdout);  }  // set the allocation mode  //  pool_d.setAllocationMode(DstrBase::USER);  // set the context pool capacity  //  pool_d.setCapacity(DEF_CAPACITY);}// method: copy constructor//// arguments://  const ContextPool& copy_node: (input) node to copy//// return: none//// this is the copy constructor for the ContextPool class//ContextPool::ContextPool(const ContextPool& copy_node_a) {  if (debug_level_d >= Integral::ALL) {         fprintf(stdout, "Constructor of context_pool: %p\n", this);    fflush(stdout);  }  // assign the node  //  assign(copy_node_a);}// constants: required constants such as class name//const String ContextPool::CLASS_NAME(L"ContextPool");// constants: i/o related constants//const String ContextPool::DEF_PARAM(L"ContextPool");// static instantiations: memory manager and debug level//MemoryManager ContextPool::mgr_d(sizeof(ContextPool), name());Integral::DEBUG ContextPool::debug_level_d = Integral::NONE;

⌨️ 快捷键说明

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