⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sampledocument.cpp

📁 稿件名称:基于Symbian OS的S60手机游戏图像处理 稿件作者:王庚 程序名称:Sample 运行环境:Win XP;VC++ 6.0
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CSampleDocument from SampleDocument.h
*  Part of  : Sample
*  Created  : 2005-09-27 by 
*  Implementation notes:
*     Initial content was generated by Series 60 AppWizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include "SampleDocument.h"
#include "SampleAppUi.h"

// ================= MEMBER FUNCTIONS =======================

// constructor
CSampleDocument::CSampleDocument(CEikApplication& aApp)
: CAknDocument(aApp)    
    {
    }

// destructor
CSampleDocument::~CSampleDocument()
    {
    }

// EPOC default constructor can leave.
void CSampleDocument::ConstructL()
    {
    }

// Two-phased constructor.
CSampleDocument* CSampleDocument::NewL(
        CEikApplication& aApp)     // CSampleApp reference
    {
    CSampleDocument* self = new (ELeave) CSampleDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop();

    return self;
    }
    
// ----------------------------------------------------
// CSampleDocument::CreateAppUiL()
// constructs CSampleAppUi
// ----------------------------------------------------
//
CEikAppUi* CSampleDocument::CreateAppUiL()
    {
    return new (ELeave) CSampleAppUi;
    }

// End of File  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -