epoc32/include/zipfilememberiterator.h
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     7 //
     8 // Initial Contributors:
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
     9 // Nokia Corporation - initial contribution.
    10 //
    10 //
    11 // Contributors:
    11 // Contributors:
    12 //
    12 //
    13 // Description:
    13 // Description:
    14 // $Revision$
       
    15 // 
       
    16 //
    14 //
       
    15 
    17 
    16 
    18 #ifndef _ZIP_FILE_MEMBER_ITERATOR_H_
    17 #ifndef _ZIP_FILE_MEMBER_ITERATOR_H_
    19 #define _ZIP_FILE_MEMBER_ITERATOR_H_
    18 #define _ZIP_FILE_MEMBER_ITERATOR_H_
    20 
    19 
    21 #include <e32std.h>
    20 #include <e32std.h>
    22 
    21 
    23 // Forward Class Declaration(s)
    22 // Forward Class Declaration(s)
    24 
    23 
    25 class CZipFileMember;
    24 class CZipFileMember;
       
    25 class CZipFile;
    26 
    26 
    27 // End of  Forward Class Declaration(s)
    27 // End of  Forward Class Declaration(s)
    28 
    28 
    29 /**
    29 /**
    30 An iterator class for iterating though all the entries in the archive.
    30 An iterator class for iterating though all the entries in the archive.
    38 
    38 
    39 public:
    39 public:
    40 	IMPORT_C CZipFileMember* NextL(void);
    40 	IMPORT_C CZipFileMember* NextL(void);
    41 
    41 
    42 private:
    42 private:
    43 	CZipFileMemberIterator(CZipFile*);
    43 	CZipFileMemberIterator(CZipFile* aZipFile);
    44 	
    44 	
    45 private:
    45 private:
    46 	CZipFile* iZipFile;
    46 	CZipFile* iZipFile;
    47 	TInt      iIndex;
    47 	TInt      iIndex;
    48 	};
    48 	};