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

📄 ldcno3document.cpp

📁 Symbian 初学者实例
💻 CPP
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */

#include "LDCNO3AppUi.h"
#include "LDCNO3Document.h"


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

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

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

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

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

CEikAppUi* CLDCNO3Document::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) CLDCNO3AppUi));
    }

⌨️ 快捷键说明

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