os/ossrv/compressionlibs/ziplib/test/oldezlib/inc/OldZipFileMemberIterator.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // ZipFileMemberIterator.h
    15 // $Revision$
    16 // 
    17 //
    18 
    19 #ifndef _EZIP_FILE_MEMBER_ITERATOR_H_
    20 #define _EZIP_FILE_MEMBER_ITERATOR_H_
    21 
    22 #include <e32std.h>
    23 #include "oldzipfile.h"
    24 #include "OldZipFileMember.h"
    25 // Forward Class Declaration(s)
    26 
    27 class TOLDEZIP::CZipFileMember;
    28 
    29 namespace TOLDEZIP
    30 	{
    31 	class CZipFile;
    32 	}
    33 
    34 // End of  Forward Class Declaration(s)
    35 
    36 /**
    37 An iterator class for iterating though all the entries in the archive.
    38 
    39 @publishedAll
    40 @released
    41 */
    42 namespace TOLDEZIP
    43 {
    44 class CZipFileMemberIterator
    45 	{
    46 friend class CZipFile;
    47 
    48 public:
    49 	IMPORT_C CZipFileMember* NextL(void);
    50 
    51 private:
    52 	CZipFileMemberIterator(CZipFile*);
    53 	
    54 private:
    55 	CZipFile* iZipFile;
    56 	TInt      iIndex;
    57 	};
    58 }//TOLDEZIP
    59 #endif /* !_ZIP_FILE_MEMBER_ITERATOR_H_ */