?? parkingdocument.cpp
字號(hào):
/* 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));
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -