utils.h
资源名称:PEPack.rar [点击查看]
上传用户:sdguojin
上传日期:2022-07-31
资源大小:1726k
文件大小:0k
源码类别:
系统编程
开发平台:
Visual C++
- #ifndef _utils_H_
- #define _utils_H_
- template<typename T>
- class CZeroClass
- {
- public:
- CZeroClass()
- {
- memset(this, 0, sizeof(T));
- }
- };
- #endif