// file: $SPEECH_HOMEWORK4/hw4/class/signal_noise_ratio/v1.0/snr_dbg_1.cc // // isip include files // #include "signal_noise_ratio.h" #include "signal_noise_ratio_constants.h" // method: set_debug_cc // // arguments: // int_4 debug_level_a: (input) indicating which debug level // // return: a logical_1 indicating status // logical_1 Signal::set_debug_cc(int_4 debug_level_a) { // check arguments // if ((debug_level_a < ISIP_DEBUG_NONE) || (debug_level_a > ISIP_DEBUG_FULL)) { error_handler_cc((char_1*)"set_debug_cc", (char_1*)"illegal debugging level to set"); } // set the debug level // debug_level_d = debug_level_a; // exit gracefully // return ISIP_TRUE; }