application/inc/PodcastSearchView.h
branchRCL_3
changeset 368 b131f7696342
parent 318 a231cc388498
equal deleted inserted replaced
367:4b75876aa85a 368:b131f7696342
    23 #include "FeedEngine.h"
    23 #include "FeedEngine.h"
    24 #include "PodcastModel.h"
    24 #include "PodcastModel.h"
    25 #include "PodcastListView.h"
    25 #include "PodcastListView.h"
    26 #include "Podcast.hrh"
    26 #include "Podcast.hrh"
    27 
    27 
    28 class CPodcastSearchView : public CPodcastListView, public MEikListBoxObserver, 
    28 class CPodcastSearchView : public CPodcastListView, 
    29 	public MFeedEngineObserver
    29 	public MFeedEngineObserver
    30     {
    30     {
    31     public: 
    31     public: 
    32         static CPodcastSearchView* NewL(CPodcastModel& aPodcastModel);
    32         static CPodcastSearchView* NewL(CPodcastModel& aPodcastModel);
    33         static CPodcastSearchView* NewLC(CPodcastModel& aPodcastModel);
    33         static CPodcastSearchView* NewLC(CPodcastModel& aPodcastModel);
    76 		 * Command handling function intended for overriding by sub classes. 
    76 		 * Command handling function intended for overriding by sub classes. 
    77 		 * Default implementation is empty.  
    77 		 * Default implementation is empty.  
    78 		 * @param aCommand ID of the command to respond to. 
    78 		 * @param aCommand ID of the command to respond to. 
    79 		 */
    79 		 */
    80 		void HandleCommandL(TInt aCommand);
    80 		void HandleCommandL(TInt aCommand);
    81 
    81 				
    82 	private:
    82 	private:
    83 		CPodcastModel& iPodcastModel;		
    83 		CPodcastModel& iPodcastModel;		
    84 		TBool iSearchRunning;
    84 		TBool iSearchRunning;
    85 };
    85 };
    86 
    86