inst_00.cc
来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 38 行
CC
38 行
// file: $isip/class/search/Instance/inst_00.cc// version: $Id: inst_00.cc,v 1.7 2003/02/15 17:08:30 alphonso Exp $//// isip include files//#include "Instance.h"// method: destructor//// arguments: none//// return: none//// this is the default destructor for the Instance class//Instance::~Instance() { if (debug_level_d >= Integral::ALL) { fprintf(stdout, "Destructor of instance: %p\n", this); fflush(stdout); } clear();}// constants: required constants such as class name//const String Instance::CLASS_NAME(L"Instance");// static instantiations: memory manager, debug level and verbosity//MemoryManager Instance::mgr_d(sizeof(Instance), CLASS_NAME);Ulong Instance::nsymbol_length_d = DEF_NSYMBOL_LENGTH;Integral::DEBUG Instance::debug_level_d = Integral::NONE;//// end of file
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?