1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 class CCalIteratorImpl;
26 An iterator for iterating though all the entries in the calendar store.
28 This may be used by a synchronisation application to iterate all entries in the file to find entries that
29 have been added\\deleted between two synchronisations.
31 The application must not create the entry view or instance view while iterating through the entries.
36 NONSHARABLE_CLASS(CCalIter) : public CBase
40 IMPORT_C static CCalIter* NewL(CCalSession& aSession);
43 IMPORT_C const TDesC8& FirstL();
44 IMPORT_C const TDesC8& NextL();
48 void ConstructL(CCalSession& aSession);
51 CCalIteratorImpl* iCalIteratorImpl;
54 #endif // __CALITER_H__