application/inc/PodCastFeedViewUpdater.h
author Sebastian Brannstrom <sebastianb@symbian.org>
Wed, 07 Jul 2010 14:10:58 +0100
changeset 163 f94dbd678dda
parent 2 29cda98b007e
permissions -rw-r--r--
Fix for bug 3183; merging minor differences with symbian1 branch

/*
* Copyright (c) 2010 Anders Fridlund, EmbedDev AB
*
* 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:
* EmbedDev AB - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef PODCASTFEEDVIEWUPDATER_H_
#define PODCASTFEEDVIEWUPDATER_H_

#include <e32base.h>
class CPodcastFeedView;

class CPodcastFeedViewUpdater : public CAsyncOneShot 
    {
public:
	static CPodcastFeedViewUpdater* NewL(CPodcastFeedView& aPodcastFeedView);
	void StartUpdate(TInt aNbrItems);
	void StopUpdate();
	~CPodcastFeedViewUpdater();
        
private:
	void ConstructL();
	CPodcastFeedViewUpdater(CPodcastFeedView& aPodcastFeedView);

	// From CAsyncOneShot
	void RunL();
	TInt RunError(TInt aError);
	
private:
	CPodcastFeedView& iPodcastFeedView;
	TInt iNbrItems;
	TInt iNextItem;
};

#endif /* PODCASTFEEDVIEWUPDATER_H_ */