www.pudn.com > ExeLauncher.zip > ExeLauncherDocument.h


/* 
* ============================================================================ 
*  Name     : CExeLauncherDocument from ExeLauncherDocument.h 
*  Part of  : ExeLauncher 
*  Created  : 01.09.2005 by Artem Marchenko 
*  Description: 
*     Declares document for application. 
*  Version  : 
*  Copyright: Artem Marchenko 2005 
* ============================================================================ 
*/ 
 
#ifndef EXELAUNCHERDOCUMENT_H 
#define EXELAUNCHERDOCUMENT_H 
 
// INCLUDES 
#include  
    
// CONSTANTS 
 
// FORWARD DECLARATIONS 
class  CEikAppUi; 
 
// CLASS DECLARATION 
 
/** 
*  CExeLauncherDocument application class. 
*/ 
class CExeLauncherDocument : public CAknDocument 
    { 
    public: // Constructors and destructor 
        /** 
        * Two-phased constructor. 
        */ 
        static CExeLauncherDocument* NewL(CEikApplication& aApp); 
 
        /** 
        * Destructor. 
        */ 
        virtual ~CExeLauncherDocument(); 
 
    public: // New functions 
 
    public: // Functions from base classes 
    protected:  // New functions 
 
    protected:  // Functions from base classes 
 
    private: 
 
        /** 
        * EPOC default constructor. 
        */ 
        CExeLauncherDocument(CEikApplication& aApp); 
        void ConstructL(); 
 
    private: 
 
        /** 
        * From CEikDocument, create CExeLauncherAppUi "App UI" object. 
        */ 
        CEikAppUi* CreateAppUiL(); 
    }; 
 
#endif 
 
// End of File