compressionlibs/ziplib/test/oldezlib/inc/OldZipFileMemberIterator.h
changeset 31 ce057bb09d0b
parent 0 e4d67989cc36
equal deleted inserted replaced
30:e20de85af2ee 31:ce057bb09d0b
       
     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_ */