📄 stackdocument.cpp
字号:
/*
========================================================================
Name : StackDocument.cpp
Author :
Copyright : Your copyright notice
Description :
========================================================================
*/
// [[[ begin generated region: do not modify [Generated User Includes]
#include "StackDocument.h"
#include "StackAppUi.h"
// ]]] end generated region [Generated User Includes]
/**
* @brief Constructs the document class for the application.
* @param anApplication the application instance
*/
CStackDocument::CStackDocument( CEikApplication& anApplication )
: CAknDocument( anApplication )
{
}
/**
* @brief Completes the second phase of Symbian object construction.
* Put initialization code that could leave here.
*/
void CStackDocument::ConstructL()
{
}
/**
* Symbian OS two-phase constructor.
*
* Creates an instance of CStackDocument, constructs it, and
* returns it.
*
* @param aApp the application instance
* @return the new CStackDocument
*/
CStackDocument* CStackDocument::NewL( CEikApplication& aApp )
{
CStackDocument* self = new ( ELeave ) CStackDocument( 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* CStackDocument::CreateAppUiL()
{
return new ( ELeave ) CStackAppUi;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -