Update contrib.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <zipfilemember.h>
19 Retrieve CRC value in a compressed file contained in a CZipFile archive file.
21 @return the 32 bit integer contains the CRC value
23 EXPORT_C TUint32 CZipFileMember::CRC32(void) const
29 Retrieve the size of compressed file contained in a CZipFile archive file.
31 @return the size of a compressed file
33 EXPORT_C TUint32 CZipFileMember::CompressedSize(void) const
35 return iCompressedSize;
39 Retrieve the name of a compressed file contained in a CZipFile archive file.
41 @return the name of a compressed file
43 EXPORT_C const TFileName* CZipFileMember::Name(void) const
49 Retrieve the size of uncompressed file contained in a CZipFile archive file.
51 @return the size of a uncompressed file
53 EXPORT_C TUint32 CZipFileMember::UncompressedSize(void) const
55 return iUncompressedSize;
61 EXPORT_C CZipFileMember::~CZipFileMember()