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

📄 ccontdocument.cpp

📁 实现好友名单。可以今天添加、删除以及增加等操作
💻 CPP
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */


// INCLUDE FILES
#include "CContDocument.h"
#include "CContAppUi.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CContDocument::CContDocument()
// constructor
// ---------------------------------------------------------
//
CContDocument::CContDocument( CEikApplication& aApp )
: CAknDocument( aApp )
    {
    }

// ---------------------------------------------------------
// CContDocument::~CContDocument ()
// destructor
// ---------------------------------------------------------
//
CContDocument::~CContDocument()
    {
    }

// ---------------------------------------------------------
// CContDocument::ConstructL()
// Two phased constructor
// ---------------------------------------------------------
//
void CContDocument::ConstructL()
    {
    }


// ---------------------------------------------------------
// CContDocument::NewL()
// Two phased constructor
// ---------------------------------------------------------
//
CContDocument* CContDocument::NewL(
        CEikApplication& aApp )     // CContApp reference
    {
    CContDocument* self = new (ELeave) CContDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop();

    return self;
    }

// ----------------------------------------------------
// CContDocument::CreateAppUiL()
// constructs CContAppUi
// ----------------------------------------------------
//
CEikAppUi* CContDocument::CreateAppUiL()
    {
    return new (ELeave) CContAppUi;
    }

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -