📄 cksm_00.cc
字号:
// file: $isip/class/system/Checksum/cksm_00.cc// version: $Id: cksm_00.cc,v 1.4 2000/11/17 20:46:32 peng Exp $//// isip include files//#include "Checksum.h" // method: default constructor//// arguments: none//// return: none//Checksum::Checksum() { // initialize class data // algorithm_d = DEF_ALGORITHM; implementation_d = DEF_IMPLEMENTATION; cksum_d = (ulong)0; // set the status to invalid // is_valid_d = false; // exit gracefully //}//-----------------------------------------------------------------------------//// we define non-integral constants in the default constructor// //-----------------------------------------------------------------------------// constants: class name//const SysString Checksum::CLASS_NAME(L"Checksum");// static instantiations: debug level and memory manager//Integral::DEBUG Checksum::debug_level_d = Integral::NONE;MemoryManager Checksum::mgr_d(sizeof(Checksum), Checksum::name());
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -