serviceproviders/sapi_calendar/tsrc/dev/tcalendartest/tcalendarimportiter1/inc/calimptestcases.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 Aug 2009 07:43:07 +0300
changeset 22 fc9cf246af83
parent 19 989d2f495d90
permissions -rw-r--r--
Revision: 200931 Kit: 200935

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:   ?Description
*
*/




#ifndef CALIMPTESTCASES_H
#define CALIMPTESTCASES_H

#include <e32base.h>

#include "calendarheader.h"

class CCalendarService;

class CCalImpTestCases: public CActive, public MCalCallbackBase
		{
			enum TTestCaseType
				{
				KImportSync = 0,
				KImportAsync,
				KImportAsyncICAL,
				};
		public:
		
			static CCalImpTestCases* NewL( TInt& aResult, TInt aVCalOrICal = 1); //1 means vCal
		
			~CCalImpTestCases();
		
			TInt TestImportL();

			void TestImportAsyncL();

			TInt Result();
		
		private:
		
			void ConstructL();
		
			CCalImpTestCases( TInt& aResult,TInt aVCalOrICal = 1); //1 means vCal

			//for the sake of ActiveObject
			virtual void DoCancel();
		
			virtual void RunL();

			void Start();

			void NotifyResultL(TInt aErrCode, TAny* aResult);
			
		private:	
		
			CActiveSchedulerWait* 	iWaitSchedular;
		
			CCalendarService*		iCalendarService;
			
			TTestCaseType			iTestCaseType;
		
			TInt& 					iResult;
			
			TInt					iVCalOrICal;
			
			RPointerArray<TUIDSet> 	iArruids;
			
		};



#endif      // CALIMPTESTCASES_H