📄 ckgzipprogress.h
字号:
// CkGzipProgress.h: interface for the CkGzipProgress class.
//
//////////////////////////////////////////////////////////////////////
#ifndef _CKGZIPPROGRESS_H
#define _CKGZIPPROGRESS_H
#pragma once
class CkGzipProgress
{
public:
CkGzipProgress() { }
virtual ~CkGzipProgress() { }
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -