// file: $isip/class/algo/DisplayData/dspd_01.cc // version: $Id: dspd_01.cc 6651 2001-04-11 18:38:19Z duncan $ // // isip include files // #include #include "DisplayData.h" // method: debug // // arguments: // const unichar* msg: (input) message to print // // return: a bool8 value indicating status // bool8 DisplayData::debug(const unichar* msg_a) const { // declare local variables // String output; // display the algorithm // output.debugStr(name(), msg_a, L"algorithm_d", ALGO_MAP((int32)algorithm_d)); Console::put(output); // display the algorithm // output.debugStr(name(), msg_a, L"implementation_d", IMPL_MAP((int32)implementation_d)); Console::put(output); // display the number name // String value; value.assign((int32)number_d); output.debugStr(name(), msg_a, L"number_d", value); Console::put(output); // exit gracefully // return true; }