📄 example2ddocument.cpp
字号:
/*
* ============================================================================
* Name : CExample2DDocument from Example2DDocument.h
* Part of : Example2D
* Created : 23.09.2005 by
* Implementation notes:
* Initial content was generated by Series 90 Application Wizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "Example2DDocument.h"
#include "Example2DAppui.h"
CExample2DDocument::CExample2DDocument( CEikApplication& aApp )
: CEikDocument( aApp )
{
}
CExample2DDocument::~CExample2DDocument()
{
}
void CExample2DDocument::ConstructL()
{
}
CExample2DDocument* CExample2DDocument::NewL( CEikApplication& aApp )
{
CExample2DDocument* self = new( ELeave )CExample2DDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
CEikAppUi* CExample2DDocument::CreateAppUiL()
{
return new( ELeave )CExample2DAppUi;
}
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -