Update contrib.
2 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
4 // This component and the accompanying materials are made available
5 // under the terms of "Eclipse Public License v1.0"
6 // which accompanies this distribution, and is available
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
19 #ifndef _EZIP_FILE_MEMBER_H_
20 #define _EZIP_FILE_MEMBER_H_
22 #include "localtypes.h"
25 Class encapsulating the representation of a compressed file contained in a
26 CZipFile archive file.
33 class CZipFileMember: public CBase
35 friend class CZipFile;
39 IMPORT_C TUint32 CRC32(void) const;
40 IMPORT_C TUint32 CompressedSize(void) const;
41 IMPORT_C const TFileName* Name(void) const;
42 IMPORT_C TUint32 UncompressedSize(void) const;
43 IMPORT_C virtual ~CZipFileMember();
47 /** The name of a compressed file*/
50 /** The method for compressing file*/
51 TUint16 iCompressionMethod;
53 /** The size of compressed file */
54 TUint32 iCompressedSize;
56 /** The size of uncompressed file*/
57 TUint32 iUncompressedSize;
59 /** CRC with 32 bits length in a compressed file*/
65 #endif /* !_ZIP_FILE_MEMBER_H_ */