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

📄 parkingdocument.cpp

📁 一个简单的手机读写文件的例子。可以让你轻松学会在SYMBIAN中如何读写文件。
💻 CPP
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */

#include "ParkingAppUi.h"
#include "ParkingDocument.h"


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

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

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

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

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

CEikAppUi* CParkingDocument::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) CParkingAppUi));
    }

⌨️ 快捷键说明

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