www.pudn.com > LDFUCK.rar > HelpView.h


/* Copyright (c) 2007, Nokia. All rights reserved */ 
 
#ifndef __HELPVIEW_H__ 
#define __HELPVIEW_H__ 
 
 
#include  
/*!  
  @class CHelpView 
   
  @discussion An instance of this class is the Application View object 
  for the FreeSMS example application 
  */ 
class CHelpContainer; 
class CHelpView : public CAknView			  
{ 
public: 
//new info 
    static CHelpView* NewL(); 
    static CHelpView* NewLC(); 
    ~CHelpView(); 
// from CCoeControl 
    TUid	Id() const; 
    void	HandleCommandL(TInt aCommand); 
    void	HandleClientRectChange(); 
private: 
	CHelpView(); 
	void	ConstructL(); 
    void	DoActivateL(const TVwsViewId&,TUid,const TDesC8&); 
    void	DoDeactivate(); 
private: 
	CHelpContainer*	m_pAppContainer; 
}; 
 
 
#endif // __FREESMS_HelpView_H__