williamr@2: // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@2: // 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 williamr@2: // which accompanies this distribution, and is available williamr@2: // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // $Revision$ williamr@2: // williamr@2: // williamr@2: williamr@2: #ifndef _ZIP_FILE_MEMBER_ITERATOR_H_ williamr@2: #define _ZIP_FILE_MEMBER_ITERATOR_H_ williamr@2: williamr@2: #include williamr@2: williamr@2: // Forward Class Declaration(s) williamr@2: williamr@2: class CZipFileMember; williamr@2: williamr@2: // End of Forward Class Declaration(s) williamr@2: williamr@2: /** williamr@2: An iterator class for iterating though all the entries in the archive. williamr@2: williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: class CZipFileMemberIterator williamr@2: { williamr@2: friend class CZipFile; williamr@2: williamr@2: public: williamr@2: IMPORT_C CZipFileMember* NextL(void); williamr@2: williamr@2: private: williamr@2: CZipFileMemberIterator(CZipFile*); williamr@2: williamr@2: private: williamr@2: CZipFile* iZipFile; williamr@2: TInt iIndex; williamr@2: }; williamr@2: williamr@2: #endif /* !_ZIP_FILE_MEMBER_ITERATOR_H_ */