Skip Navigation Links
Skip Navigation LinksHome > ZipArchive > How to Use > API Documentation

ZipArchiveLib::CBzip2Compressor::COptions Struct Reference

#include <Bzip2Compressor.h>

Inheritance diagram for ZipArchiveLib::CBzip2Compressor::COptions:

List of all members.


Public Member Functions

CZipCompressor::COptionsClone () const
int GetType () const

Public Attributes

bool m_bUseSlowDecompression

Detailed Description

Represents options of the CBzip2Compressor.

See also:
Compressing Data

CZipArchive::SetCompressionOptions


Member Function Documentation

CZipCompressor::COptions* ZipArchiveLib::CBzip2Compressor::COptions::Clone (  )  const [inline, virtual]

Clones the current options object.

Returns:
The cloned object of the same type as the current object.

Implements CZipCompressor::COptions.

int ZipArchiveLib::CBzip2Compressor::COptions::GetType (  )  const [inline, virtual]

Gets the type of the compressor to which the current options apply.

Returns:
The type of the compressor. It can be one of the CompressorType values.

Implements CZipCompressor::COptions.


Member Data Documentation

true, if the slow decompression method should be used; false otherwise. The slow decompression method uses less memory than the normal decompression method (but is slower).


The documentation for this struct was generated from the following file:
Back To Top Up