cmp_00.cc
来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 37 行
CC
37 行
// file: $isip/class/sp/Component/cmp_00.cc// version: $Id: cmp_00.cc,v 1.3 2002/07/12 13:07:31 picone Exp $//// isip include files//#include "Component.h"// there is no source code in this file////-----------------------------------------------------------------------------//// we define non-integral constants in the default constructor// //-----------------------------------------------------------------------------// constants: class name//const String Component::CLASS_NAME(L"Component");// constants: i/o related constants//const String Component::DEF_PARAM(L"");const String Component::PARAM_INPUT_NAMES(L"input");const String Component::PARAM_OUTPUT_NAME(L"output");const String Component::PARAM_COMPONENT(L"algo");// constants: default values of class parameters//const Char Component::DELIM(L'+');// static instantiations: debug level and memory manager//Integral::DEBUG Component::debug_level_d = Integral::DEF_DEBUG;MemoryManager Component::mgr_d(sizeof(Component), Component::name());
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?