ckimapprogress.h

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

H
23
字号
// CkImapProgress.h: interface for the CkImapProgress class.
//
//////////////////////////////////////////////////////////////////////

#ifndef _CKIMAPPROGRESS_H
#define _CKIMAPPROGRESS_H

#pragma once

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

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

};

#endif

⌨️ 快捷键说明

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