ckmailprogress.h

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

H
32
字号
// CkMailProgress.h: interface for the CkMailProgress class.
//
//////////////////////////////////////////////////////////////////////

#ifndef _CkMailProgress_H
#define _CkMailProgress_H

#pragma once

/*

  To receive progress events (callbacks), create a C++ class that 
  inherits this one and provides one or more overriding implementations 
  for the events you wish to receive.  

  */
class CkMailProgress  
{
    public:
	CkMailProgress();
	virtual ~CkMailProgress();

	virtual void SendPercentDone(long pctDone, bool *abort) { }
	virtual void ReadPercentDone(long pctDone, bool *abort) { }

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

};

#endif

⌨️ 快捷键说明

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