⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filelistdocument.cpp

📁 一个简单的资源管理器
💻 CPP
字号:
/*
 * Copyright (c) 2009 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( self );

    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 + -