ckmhtprogress.h

来自「DES加密解密算法,西望大家共享.参考学习」· C头文件 代码 · 共 22 行

H
22
字号
// CkMhtProgress.h: interface for the CkMhtProgress class.
//
//////////////////////////////////////////////////////////////////////

#ifndef _CKMHTPROGRESS_H
#define _CKMHTPROGRESS_H

#pragma once

class CkMhtProgress  
{
    public:
	CkMhtProgress() { }
	virtual ~CkMhtProgress() { }

	// Called periodically to check to see if the method call should be aborted.
	virtual void AbortCheck(bool *abort) { }

};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?