📄 filelistdocument.cpp
字号:
/*
* ============================================================================
* Name : CFileListDocument from FileListDocument.h
* Part of : FileList
* Created : 18.12.2002 by Forum Nokia
* Implementation notes:
* Initial content was generated by Nokia Series 60 AppWizard.
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "FileListDocument.h"
#include "FileListAppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CFileListDocument::CFileListDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CFileListDocument::~CFileListDocument()
{
}
// Symbian default constructor can leave.
void CFileListDocument::ConstructL()
{
}
// Two-phased constructor.
CFileListDocument* CFileListDocument::NewL(
CEikApplication& aApp) // CFileListApp reference
{
CFileListDocument* self = new (ELeave) CFileListDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CFileListDocument::CreateAppUiL()
// constructs CFileListAppUi
// ----------------------------------------------------
//
CEikAppUi* CFileListDocument::CreateAppUiL()
{
return new (ELeave) CFileListAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -