sl@0: sl@0: // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // $Revision: 1.1 $ sl@0: // sl@0: // sl@0: sl@0: #ifndef _EZIP_FILE_MEMBER_H_ sl@0: #define _EZIP_FILE_MEMBER_H_ sl@0: sl@0: #include "localtypes.h" sl@0: sl@0: /** sl@0: Class encapsulating the representation of a compressed file contained in a sl@0: CZipFile archive file. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: namespace TOLDEZIP sl@0: { sl@0: class CZipFileMember: public CBase sl@0: { sl@0: friend class CZipFile; sl@0: sl@0: public: sl@0: sl@0: IMPORT_C TUint32 CRC32(void) const; sl@0: IMPORT_C TUint32 CompressedSize(void) const; sl@0: IMPORT_C const TFileName* Name(void) const; sl@0: IMPORT_C TUint32 UncompressedSize(void) const; sl@0: IMPORT_C virtual ~CZipFileMember(); sl@0: sl@0: private: sl@0: sl@0: /** The name of a compressed file*/ sl@0: TFileName* iName; sl@0: sl@0: /** The method for compressing file*/ sl@0: TUint16 iCompressionMethod; sl@0: sl@0: /** The size of compressed file */ sl@0: TUint32 iCompressedSize; sl@0: sl@0: /** The size of uncompressed file*/ sl@0: TUint32 iUncompressedSize; sl@0: sl@0: /** CRC with 32 bits length in a compressed file*/ sl@0: TUint32 iCRC32; sl@0: sl@0: TUint32 iDataOffset; sl@0: }; sl@0: }//TOLDEZIP sl@0: #endif /* !_ZIP_FILE_MEMBER_H_ */ sl@0: