1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldZipFileMember.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,66 @@
1.4 +
1.5 +// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +// All rights reserved.
1.7 +// This component and the accompanying materials are made available
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 +// which accompanies this distribution, and is available
1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +//
1.12 +// Initial Contributors:
1.13 +// Nokia Corporation - initial contribution.
1.14 +//
1.15 +// Contributors:
1.16 +//
1.17 +// Description:
1.18 +// $Revision: 1.1 $
1.19 +//
1.20 +//
1.21 +
1.22 +#ifndef _EZIP_FILE_MEMBER_H_
1.23 +#define _EZIP_FILE_MEMBER_H_
1.24 +
1.25 +#include "localtypes.h"
1.26 +
1.27 +/**
1.28 +Class encapsulating the representation of a compressed file contained in a
1.29 +CZipFile archive file.
1.30 +
1.31 +@publishedAll
1.32 +@released
1.33 +*/
1.34 +namespace TOLDEZIP
1.35 +{
1.36 +class CZipFileMember: public CBase
1.37 + {
1.38 +friend class CZipFile;
1.39 +
1.40 +public:
1.41 +
1.42 + IMPORT_C TUint32 CRC32(void) const;
1.43 + IMPORT_C TUint32 CompressedSize(void) const;
1.44 + IMPORT_C const TFileName* Name(void) const;
1.45 + IMPORT_C TUint32 UncompressedSize(void) const;
1.46 + IMPORT_C virtual ~CZipFileMember();
1.47 +
1.48 +private:
1.49 +
1.50 + /** The name of a compressed file*/
1.51 + TFileName* iName;
1.52 +
1.53 + /** The method for compressing file*/
1.54 + TUint16 iCompressionMethod;
1.55 +
1.56 + /** The size of compressed file */
1.57 + TUint32 iCompressedSize;
1.58 +
1.59 + /** The size of uncompressed file*/
1.60 + TUint32 iUncompressedSize;
1.61 +
1.62 + /** CRC with 32 bits length in a compressed file*/
1.63 + TUint32 iCRC32;
1.64 +
1.65 + TUint32 iDataOffset;
1.66 + };
1.67 +}//TOLDEZIP
1.68 +#endif /* !_ZIP_FILE_MEMBER_H_ */
1.69 +