copycoder.h

来自「7-Zip 3.11的源码」· C头文件 代码 · 共 35 行

H
35
字号
// Compress/CopyCoder.h

// #pragma once

#ifndef __COMPRESS_COPYCODER_H
#define __COMPRESS_COPYCODER_H

#include "../../ICoder.h"
#include "../../../Common/MyCom.h"


namespace NCompress {

class CCopyCoder: 
  public ICompressCoder,
  public CMyUnknownImp
{
  BYTE *_buffer;
public:
  UINT64 TotalSize;
  CCopyCoder();
  ~CCopyCoder();

  MY_UNKNOWN_IMP

  STDMETHOD(Code)(ISequentialInStream *inStream,
      ISequentialOutStream *outStream, 
      const UINT64 *inSize, const UINT64 *outSize,
      ICompressProgressInfo *progress);
};

}

#endif

⌨️ 快捷键说明

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