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 "OldZipFileMember.h"
17 using namespace TOLDEZIP;
20 Retrieve CRC value in a compressed file contained in a CZipFile archive file.
22 @return the 32 bit integer contains the CRC value
24 EXPORT_C TUint32 CZipFileMember::CRC32(void) const
30 Retrieve the size of compressed file contained in a CZipFile archive file.
32 @return the size of a compressed file
34 EXPORT_C TUint32 CZipFileMember::CompressedSize(void) const
36 return iCompressedSize;
40 Retrieve the name of a compressed file contained in a CZipFile archive file.
42 @return the name of a compressed file
44 EXPORT_C const TFileName* CZipFileMember::Name(void) const
50 Retrieve the size of uncompressed file contained in a CZipFile archive file.
52 @return the size of a uncompressed file
54 EXPORT_C TUint32 CZipFileMember::UncompressedSize(void) const
56 return iUncompressedSize;
62 EXPORT_C CZipFileMember::~CZipFileMember()