?? uitestdocument.cpp
字號:
/*
========================================================================
Name : UiTestDocument.cpp
Author : Andreas Jakl
Copyright : 2007, Mopius
Description :
========================================================================
*/
// [[[ begin generated region: do not modify [Generated User Includes]
#include "UiTestDocument.h"
#include "UiTestAppUi.h"
// ]]] end generated region [Generated User Includes]
/**
* @brief Constructs the document class for the application.
* @param anApplication the application instance
*/
CUiTestDocument::CUiTestDocument( CEikApplication& anApplication )
: CAknDocument( anApplication )
{
}
/**
* @brief Completes the second phase of Symbian object construction.
* Put initialization code that could leave here.
*/
void CUiTestDocument::ConstructL()
{
}
/**
* Symbian OS two-phase constructor.
*
* Creates an instance of CUiTestDocument, constructs it, and
* returns it.
*
* @param aApp the application instance
* @return the new CUiTestDocument
*/
CUiTestDocument* CUiTestDocument::NewL( CEikApplication& aApp )
{
CUiTestDocument* self = new (ELeave) CUiTestDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop( self );
return self;
}
/**
* @brief Creates the application UI object for this document.
* @return the new instance
*/
CEikAppUi* CUiTestDocument::CreateAppUiL()
{
return new (ELeave) CUiTestAppUi;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -