📄 aknexlistdocument.cpp
字号:
/* Copyright (c) 2005, Nokia. All rights reserved */
// INCLUDE FILES
#include "AknExListDocument.h"
#include "AknExListAppUi.h"
// ================= MEMBER FUNCTIONS =========================================
// ----------------------------------------------------------------------------
// CAknExListDocument::NewL()
// Symbian two-phased constructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument* CAknExListDocument::NewL( CEikApplication& aApp )
{
CAknExListDocument* self = new ( ELeave ) CAknExListDocument( aApp );
CleanupStack::PushL( self ); // Pushes document to clean-up stack.
self->ConstructL();
CleanupStack::Pop(); // Pops from clean-up stack.
return self;
}
// ----------------------------------------------------------------------------
// CAknExListDocument::~CAknExListDocument()
// Destructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument::~CAknExListDocument()
{
}
// ----------------------------------------------------------------------------
// CAknExListDocument::CAknExListDocument()
// Overload constructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument::CAknExListDocument( CEikApplication& aApp )
: CEikDocument( aApp )
{
}
// ----------------------------------------------------------------------------
// CAknExListDocument::ConstructL()
// Symbian constructor.
// ----------------------------------------------------------------------------
//
void CAknExListDocument::ConstructL()
{
}
// ----------------------------------------------------------------------------
// CAknExListDocument::CreateAppUiL()
// Constructs CAknExListAppUi.
// ----------------------------------------------------------------------------
//
CEikAppUi* CAknExListDocument::CreateAppUiL()
{
return new ( ELeave ) CAknExListAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -