📄 aknexlistdocument.cpp
字号:
/*
* =============================================================================
* Name : CAknExListDocument
* Part of : AknExList
* Copyright (c) 2003 Nokia. All rights reserved.
* =============================================================================
*/
// INCLUDE FILES
#include "AknExListDocument.h"
#include "AknExListAppUi.h"
// ================= MEMBER FUNCTIONS =========================================
// ----------------------------------------------------------------------------
// CAknExListDocument* CAknExListDocument::NewL( CEikApplication& )
// EPOC 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( CEikApplication& )
// Overload constructor.
// ----------------------------------------------------------------------------
//
CAknExListDocument::CAknExListDocument( CEikApplication& aApp )
: CEikDocument( aApp )
{
}
// ----------------------------------------------------------------------------
// void CAknExListDocument::ConstructL()
// EPOC constructor.
// ----------------------------------------------------------------------------
//
void CAknExListDocument::ConstructL()
{
}
// ----------------------------------------------------------------------------
// CEikAppUi* CAknExListDocument::CreateAppUiL()
// Constructs CAknExListAppUi.
// ----------------------------------------------------------------------------
//
CEikAppUi* CAknExListDocument::CreateAppUiL()
{
return new( ELeave ) CAknExListAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -