// file: $isip/class/asr/SpeechRecognizer/sr_00.cc // version: $Id: sr_00.cc // // isip include files // #include // method: default constructor // // arguments: none // // return: none // // this is the default constructor // SpeechRecognizer::SpeechRecognizer() { // initialize algorithm // algorithm_d = DEF_ALGORITHM; } // method: destructor // // arguments: none // // return: none // // this is the default constructor // SpeechRecognizer::~SpeechRecognizer() { // exit gracefully // } //----------------------------------------------------------------------------- // // we define non-integral constants in the default constructor // //----------------------------------------------------------------------------- // constants: required constants such as class name // const String SpeechRecognizer::CLASS_NAME(L"SpeechRecognizer"); // static instantiations: memory manager, debug level and verbosity // MemoryManager SpeechRecognizer::mgr_d(sizeof(SpeechRecognizer), SpeechRecognizer::CLASS_NAME); Integral::DEBUG SpeechRecognizer::debug_level_d = Integral::NONE; Integral::DEBUG SpeechRecognizer::verbosity_d = Integral::NONE;