www.pudn.com > smssend-vc.rar > csmsdialog.h


/* Copyright (c) 2003, Nokia. All rights reserved */ 
 
#ifndef __CSMSDIALOG_H__ 
#define __CSMSDIALOG_H__ 
 
// INCLUDES 
#include  
 
// CLASS DECLARATION 
/** 
* CSmsDialog dialog class 
*/ 
class CSmsDialog : public CEikDialog 
    { 
    public: // Constructors and destructor 
 
        /** 
		* ~CSmsDialog(). 
        * Destructor. 
		*/ 
		virtual ~CSmsDialog(); 
 
    protected: // Functions from base classes 
 
        /** 
        * From CEikDialog, PreLayoutDynInitL. 
        * Called before a form is drawn. 
        */ 
        void PreLayoutDynInitL(); 
 
		/** 
		* From CEikDialog, OkToExitL. 
        * Called by the dialog framework when the user presses 
   		* a button in the button panel. 
        * @param aButtonId Id of the softkey which was pressed. 
		* @return ETrue if the dialog can exit, EFalse otherwise. 
		*/ 
        TBool OkToExitL( TInt aButtonId ); 
    }; 
 
#endif  // __CSMSDIALOG_H__ 
 
// End of File