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

📄 createdocument.cpp

📁 symbian 可在收件箱生成5000字超长短信!
💻 CPP
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */

#include "CreateAppUi.h"
#include "CreateDocument.h"


CCreateDocument* CCreateDocument::NewL(CEikApplication& aApp)
    {
    CCreateDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
    }

CCreateDocument* CCreateDocument::NewLC(CEikApplication& aApp)
    {
    CCreateDocument* self = new (ELeave) CCreateDocument(aApp);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
    }

void CCreateDocument::ConstructL()
    {
    // Add any construction that can leave here
    }    

CCreateDocument::CCreateDocument(CEikApplication& aApp) : CAknDocument(aApp) 
    {
    // Add any construction that can not leave here
    }   

CCreateDocument::~CCreateDocument()
    {
    // Any destruction code here
    }

CEikAppUi* CCreateDocument::CreateAppUiL()
    {
    // Create the application user interface, and return a pointer to it;
    // the framework takes ownership of this object
    return (static_cast<CEikAppUi*>(new (ELeave) CCreateAppUi));
    }

⌨️ 快捷键说明

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